
@font-face{font-family: first;  src: url('../fonts/OpenSans-Light_0.ttf');}
@font-face{font-family: sec;  src: url('../fonts/OpenSans-Regular_0.ttf');}
@font-face{font-family: third;  src: url('../fonts/OpenSans-Bold_0.ttf');}


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

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

body, html {
	height: 100%;
	font-family: sec;
}

/*---------------------------------------------*/
a {
	font-family: sec;
	font-size: 14px;
	line-height: 1.7;
	text-decoration: none;
	color: #666666;
	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: #fff;
}

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

p {
	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;
}



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

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: .4px;
}

.bo1 {
  border-bottom: 1px solid #999999;
}

.hov1:hover {
  border-color: #d33f8d;
}


/*//////////////////////////////////////////////////////////////////
[ 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-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
  position: relative;
  z-index: 1;
}

.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #005bea;
  background: linear-gradient(#f45051, #a9348a, #cf302f);
  opacity: 0.9;
}

.wrap-login100 {
  width: 390px;
  background: transparent;
}



/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.login100-form-title {
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  text-align: center;

  width: 100%;
  display: block;
}

/*---------------------------------------------*/
.login100-form-avatar {
  width: 170px;
  height: 170px;
  overflow: hidden;
  margin: 0 auto;
}
.login100-form-avatar img {
  width: 100%;
}


/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
}

.input100 {
  font-size: 15px;
  line-height: 1.2;
  color: #333333;

  display: block;
  width: 100%;
  background: #fff;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 53px;
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(0,91,234, 0.6);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 15px;
  color: #999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #00c6fb;
  padding-left: 23px;
}


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

.login100-form-btn {
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  top: 0;
  left: 0;
  background: #710016;
  /*background: linear-gradient(left, #005bea, #00c6fb);*/
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.login100-form-btn:hover {
  background: transparent;
  color: #fff;
}

.login100-form-btn:hover:before {
  opacity: 1;
}

/*------------------------------------------------------------------
[ Button sign in with ]*/
.btn-face,
.btn-google {
  font-size: 16px;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 2);
  height: 40px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  background-color: #fff;

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


.btn-face {
  color: #3b5998;
}

.btn-face i {
  font-size: 20px;
  margin-right: 10px;
  padding-bottom: 1px;
}

.btn-google {
  color: #555555;
}

.btn-google img {
  width: 19px;
  margin-right: 10px;
  padding-bottom: 1px;
}


.btn-face:hover,
.btn-google:hover {
  border-color: #d33f8d;
}



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

.validate-input {
  position: relative;
}

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

  color: #c80000;
  font-size: 13px;
  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: "\f06a";
  font-family: "Font Awesome 5 Free";
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

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


.search-box input{
	border: solid #ccc 1px;
    font-size: 13px;
    padding: 4px 0 4px 6px;
    letter-spacing: .3px;
	border-right: 0;
    height: 30px;
    float: left;
	color: #999;
}
.search-box input:focus::placeholder{
	color: #999 !important;
}
.search-box input:focus{
	border: solid #ccc 1px !important;
	border-right: 0 !important;
}

.search-box button{
	border: solid #ccc 1px;
    border-left: 0;
    background: #fff;
    font-size: 11px;
    height: 30px;
    padding: 0 10px 0 10px;
}

.totl-numbr{
	float: left;
    margin: 1px 10px 0 0;
    letter-spacing: .3px;
}

.t-order{
	border: solid #828282 1px;
    font-size: 14px;
    padding: 2px 10px 2px 10px;
    display: inline-block;
}

.button-box a{
	background: #00b0b9;
    display: inline-block;
    padding: 3px 10px 3px 10px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .5px;
    margin: 0 3px 0 0;
    border-radius: 3px;
    width: 90px;
    text-align: center;
}

.new-delivery a{
	width: auto;
}

.cus-table th{
	font-weight: normal;
    font-family: third;
}

.cus-table td a{
	color: #06F;
	text-decoration: underline;
}

ul.page-list{
	float: right;
}

ul.page-list li{
	display: inline-block;
}

ul.page-list li i{
	font-size: 10px;
}

ul.page-list li a{
	color: #fff;
    width: 25px;
    height: 25px;
    display: block;
    background: #00b0b9;
    text-align: center;
    font-size: 13px;
    padding: 2px 0 0 0;
}

ul.page-list li a:hover{
	color: #fff;
}

ul.page-list li a.active{
	background:  #4a4a4a;
}

.clint-name{
	font-family: sec;
}

.clint-name input{
    padding: 1px 0 1px 4px;
    font-size: 13px;
    color: #666;
	border-radius: 3px;
    border: solid #a5a5a5 1px;
}

.clint-name span{
	display: inline-block;
    margin: 0 0 0 10px;
    color: #000;
}

.rqst-hdr-bg{
	background: #e0e0e0;
    padding: 15px 20px 13px 20px;
}

.delete-btn{
	display: inline-block;
    float: right;
    font-size: 16px;
    color: #ff0047 !important;
}

.pickup-dtls{
	color: red;
    font-family: third;
    margin: 10px 0 6px 0;
    letter-spacing: .3px;
    font-size: 15px;
}
.assign-box{
	background: #fff;
    padding: 30px 40px 30px 40px;
	box-shadow: 0 4px 7px #00000017;
    margin-bottom: 50px;
}

.assign-box2{
	margin: 0 0 2px 0;
}

ul.pickup-list{
	padding: 0;
	margin-bottom: 20px;
}
ul.pickup-list li{
	margin: 0 0 2px 0;
	font-family: sec;
}
ul.pickup-list li:nth-child(1){
	font-family: third;
}
ul.pickup-list li:nth-child(2){

}

ul.pickup-list li select{
}
ul.pickup-list li input, select{
	border: solid #404040 1px;
    color: #404040;
    width: 50%;
    font-size: 12px;
	padding: 0 0 0 3px;
	border-radius: 2px;
}

.assign-drvr{
	background: #0cbf22;
    color: #fff !important;
    display: table;
    padding: 8px 20px 8px 20px;
    margin: 0 auto;
    letter-spacing: .5px;
    border-radius: 5px;
}

ul.add-list{
	padding: 0;
}

ul.add-list li{
	display: inline-block;
	margin: 0 20px 0 0;
}

ul.add-list li input{
	border: solid #404040 1px;
    color: #404040;
    font-size: 12px;
	padding: 0 0 0 3px;
	border-radius: 2px;
}

ul.addbtn-list{
	text-align: center;
}

ul.addbtn-list li{
	display: inline-block;
}

ul.addbtn-list li a{
	background: #0cbf22;
    color: #fff !important;
    padding: 8px 20px 8px 20px;
    letter-spacing: .5px;
    border-radius: 5px;
	width: 170px;
    margin: 0 15px 0 0;
    display: inline-block;
}

.cus-header{
	padding: 0;
}

.cus-title{
	font-family: third;
    font-size: 14px;
    font-weight: normal;
    padding: 8px 0 8px 10px;
}

.cus-close{
	padding: 12px 13px 0 10px !important;
    margin: 0 !important;
    text-shadow: none;
    font-size: 14px;
    opacity: 1 !important;
}

.cus-dialog{
	margin: 300px auto;
}

.drvr-id p{
	font-family: third;
    color: #000;
    font-size: 12px;
}

.drvr-id select{
	width: 100%;
}

ul.dlvry-prsn{
	text-align: center;
}

.policy-menu{
	background:  #CCC;
}

ul.policy-list{
	margin: 0;
	padding: 0;
}

ul.policy-list li{
	display: inline-block;
}

ul.policy-list li a{
	display: inline-block;
    padding: 7px 15px 5px 15px;
    color: #404040;
    font-size: 14px;
}

ul.policy-list li a:hover{
	background: #0092f9;
	color: #FFF;
}

ul.policy-list li a.active{
	background: #0092f9;
	color: #FFF;
}

.trm-hdng{
	font-size: 20px;
    font-family: third;
    color: #f98a00;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin: 0 0 8px 0;
}

ul.contact-list{
	padding: 0;
}

ul.contact-list li{
	display: block;
	font-size: 28px;
	margin: 0 0 9px 0;
}

ul.contact-list li a{
	color: #333;
	font-size: 27px;
}

ul.contact-list li i{
	width: 30px;
    height: 30px;
    text-align: center;
    font-size: 30px;
    float: left;
	margin: 14px 10px 0 0;
}

ul.contact-list li:nth-child(2) i{
	font-size: 26px;
}

.del-boy-box{
	padding: 50px;
    border: solid #dadada 1px;
    border-radius: 15px;
}

.del-boy-dtls{
	text-align: center;
    font-family: third;
    font-size: 16px;
    margin: 0 0 18px 0;
    color: #424242;
}













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

/*//////////////////////////////////////////////////////////////////
[ responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
}