:root {
  --white: #fff;
  --gray: #f4f4f4;
  --black: #1c1c1c;
  --green: #42a000;
  --lightgreen: #7ad838;
  --btn-color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
}

body {
  background-color: var(--gray);
  /*min-height: 100vh;*/
  font-family: Arial, Arial, sans-serif;
}

img {
  vertical-align: center;
}

input {
  outline: none;
}

.flex-row {
  display: flex;
  justify-content: space-between;
}

.title {
  text-transform: uppercase;
  color: var(--black);
  /*line-height: 22.5px;*/
  /*font-family: Arial;*/
  font-weight:600;
}
.title.center {
  text-align: center;
}

.card {
  position: relative;
  border: 1px solid var(--gray);
  border-radius: 5px;
  background-color: var(--white);
  padding: 10px;
  margin-bottom: 5px;
}
.card:last-child {
  margin-bottom: 0;
}

.input {
  border: none;
  border-bottom: 1px solid var(--black);
  margin-bottom: 10px;
  /*font-family: Arial;*/
  font-weight: 600;
  font-size: 12px;
  width: 90%;
}

.button {
  position: relative;
  font-family: Arial;
  text-align: center;
  padding: 10px 0;
  width: 175px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  border: 1px solid var(--green);
}
.button input {
  border: 0;
  width: 100%;
  text-align: center;
  font-family: Arial;
  font-size: 14px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  font-size: 16px;
}
.button.full {
  background-image: linear-gradient(to bottom, var(--lightgreen), var(--green));
  color: var(--btn-color);
  font-size:16px;
}
.button.full input {
  color: var(--white);
}
.button.empty {
  background-color: var(--white);
  color: var(--btn-color);
}
.button.empty input::placeholder {
  color: var(--btn-color);
  opacity: 1;
}
.button.big {
  padding: 0;
  height: 40px;
  width: 25px;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
}

.dropdown {
  position: relative;
}
.dropdown img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  z-index: 190;
  pointer-events: none;
}

.dropdown select {
  display: none;
}

.select-selected {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--gray);
  padding: 5px 16px;
  border-radius: 5px;
  z-index: 100;
}

.select-items div,.select-items li {
  border-bottom: 1px solid var(--gray);
  padding: 5px 14px;
  margin: 0 6px;
  list-style:none;
  cursor:pointer;
  text-align: left;
}

.select-items div, .select-selected {
  color: var(--black);
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  max-height: 400px;
  overflow-y: scroll;
  position: absolute;
  background-color: var(--white);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  padding-top: 5px;
  transform: translateY(-5px);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.select-items::-webkit-scrollbar {
  width: 10px;
}
.select-items::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: 10px;
}
.select-items::-webkit-scrollbar-thumb {
  background: var(--lightgreen);
  border-radius: 10px;
}
.select-items::-webkit-scrollbar-thumb:hover {
  background: var(--lightgreen);
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.radio {
  position: relative;
  padding-left: 17px;
  cursor: pointer;
  /*font-family: Arial;*/
  font-weight: 600;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 15px;
  margin: 1px 0px;
  width:110px;
}

/* Hide the browser's default radio button */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: var(--white);
  border: 1px solid var(--green);
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.radio:hover input ~ .checkmark {
  background-color: var(--gray);
}

/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checkmark {
  background-color: var(--green);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray);
}

.slider:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 35px;
  left: 0px;
  top: 0px;
  background-color: white;
  transition: 0.2s;
  background-color: lightgray;
}

input:checked + .slider:before {
  transform: translateX(28px);
  background-color: var(--green);
}

/* Rounded sliders */
.slider.round {
  border-radius: 13px;
  border: 1px solid var(--gray);
}

.slider.round:before {
  border-radius: 15px;
}

.order-page {
  position: absolute;
  top: 5px;
  left: 250px;
  width: 100%;
  max-width: 400px;
  margin: 0px auto;
  padding: 10px;
  background-color: var(--white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(215, 215, 215, 0.01);
}
.order-page > div {
  position: relative;
  z-index: 5;
}
/*.order-page:before, .order-page:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: transparent;
  box-shadow: 0 0 100px 0 var(--green);
  top: -10px;
  left: -100px;
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
}*/
.order-page:after {
  width: 470px;
  height: 470px;
  top: 350px;
  left: 50%;
  transform: translateX(-50%);
}

.city-text {
  color: var(--green);
  font-family: Arial;
}

.underlined {
  color: var(--green);
  font-size: 14px;
  font-family: Arial;
  margin-bottom: 4px;
  border-bottom: 1px var(--green) dashed;
}

.un{
	margin-top:-5px;
}

.additional {
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 5px 0;
  background-color: var(--white);
  cursor: pointer;
  border-radius: 5px;
}
.additional svg {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.phone {
  /*text-align: center;*/
  margin-bottom: 5px;
}
.add-to-price {
	width: 33.3%;
  display: inherit;
  align-items: center;
  position: relative;
}

.summ {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  background-color: var(--white);
  margin: 0 -5px;
}
.summ span {
  font-family: Arial;
}

.re {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.add-to-cost {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.add-to-cost .price-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.add-to-cost .price-list li {
  font-size: 12px;
  /*font-family: Arial;*/
  cursor: pointer;
}
.add-to-cost .price-list li:nth-child(even) {
  transform: translateY(35px);
}
.add-to-cost .bar {
  width: 100%;
  height: 10px;
  background-color: lightgray;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.add-to-cost .bar div {
  transition: width 0.2s ease;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 10px;
  background-image: linear-gradient(to bottom, var(--lightgreen), var(--green));
}

.in-city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.in-city p {
  margin-left: 10px;
  font-family: Arial;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  flex: 1;
}
.in-city p.green{
  color: var(--green);
}
.add-location {
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}

.location-row {
  margin-bottom: 10px;
}
.location-row:last-child .circle img {
  display: none;
}
.location-row .input-row img {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0px;
  top: 5px;
  transform: translateY(-50%);
  cursor: pointer;
}
.location-row .circle {
  /*margin-left: 20px;*/
  position: relative;
  z-index: 0;
}
.location-row .circle:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(45deg);
  width: 100%;
  height: 100%;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: linear-gradient(to right, var(--lightgreen), var(--green));
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.location-row .circle p {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  font-family: Arial;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 100;
}
.location-row .circle img {
  position: absolute;
  top: -100%;/*top: 50%;*/
  left: 50%;
  height: 40px;
  transform: translateX(-50%);
  z-index:-1;
}

.lone-marker {
  position: absolute;
  bottom: 25px;
  left: 10px;
  z-index: 0;
}
.lone-marker .circle {
  /*margin-left: 20px;*/
  position: relative;
  z-index: 0;
  top: -15px;
}
.lone-marker .circle:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(45deg);
  width: 100%;
  height: 100%;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: linear-gradient(to right, var(--lightgreen), var(--green));
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.lone-marker .circle p {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  font-family: Arial;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.lone-marker .circle img {
  position: absolute;
  top: 50%;
  /*left: 50%;*/
  left: 25%;
  height: 65px;
  transform: translateX(-50%);
}

.additional_options_menu {
  padding:10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  /*margin-bottom: 15px;*/
  overflow: hidden;
  background-color:var(--white);
  margin-top:-5px;
}
.additional_options_menu label {
  margin: 5px 10px;
  margin-top: 0;
  width: auto;
}

.additional_options_menu .radio{
  padding: 0px 0px 0px 25px;
}

.clear-all {
  font-size: 12px;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
  background-color: var(--gray);
  border-radius: 5px;
  padding: 3px;
  text-align: center;
}

.phone-input {
  text-align: left;
  /*font-family: Arial;*/
  font-family: unset;
  font-weight:600;
  border: none;
  border-bottom: 1px solid var(--gray);
  width: 130px;
}

.datepicker--nav-action path {
  fill: none !important;
  stroke: var(--green) !important;
  stroke-width: 2px !important;
}

.datepicker--nav-title {
  font-family: Arial !important;
}

.datepicker--cells {
  font-family: Arial !important;
}

.datepicker--cell-day {
  border-radius: none !important;
  margin: 1px;
  width: 30px;
  height: 20px;
}

.datepicker--cell.-selected- {
  color: var(--white) !important;
  box-shadow: none;
  background-image: linear-gradient(to bottom, var(--lightgreen), var(--green)) !important;
}
.datepicker--cell.-current- {
  /*color: var(--green) !important;*/
  border: none;
  background-color: var(--gray);
}
.order-page{
	background-color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 465px) {
  .cartaa{
	  display:none;
  }
  .order-page{
  	top: 0px;
    left: 0px;
  	background-color: rgba(215, 215, 215, 0.01);
  }
  .button {
    font-size: 12px;
  }
  .button input {
    font-size: 12px;
  }

  #button-spacing {
    width: 5px !important;
  }

  .radio {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .underlined {
    font-size: 10px;
  }

  .title {
    font-size: 13px;
  }
}
@media screen and (max-width: 360px) {
  .button {
    font-size: 12px;
  }
  .button input {
    font-size: 12px;
  }
  .summ{
	  width:100px;
  }
}
.input-row{
	display: flex;
	flex-direction: column;
	position: relative;
	width: 90%;
}
.DOMto2{width: 30%;margin-left: 70%;}
.DOMot,.Padikot{width: 30%;}
.card.phone>p{
	margin: 0px 5%;
	font-weight: 600;
	text-align: center;
}
.ADDRESSTO {width: 100%;}
@media(max-width: 768px){
  .order-page{
    left: 0px;
  }
}
@media(max-width: 280px){
	.card.phone > p{margin: 0px;}
	.phone-input{width: 40px; }
	.add-location{font-size: 12px;}
}
/*СТИЛИЗАЦИЯ ДАТА И ВРЕМЯ*/
.datepicker--time-current{
	padding: 0 25px;
	text-transform: uppercase;
    color: white;
    /* line-height: 22.5px; */
    font-family: Arial;
}
.timepicker---hour{
	margin-left:10px;
}
.timepicker---hour, .timepicker---min{
	text-align:center;
	color:var(--lightgreen);
	width:25px;
	height:25px;
	text-transform: uppercase;
	font-family: Arial;
	border-radius: 5px;
}
.timepicker---all{
	text-align:center;
	color:var(--lightgreen);
	width:60px;
	height:25px;
	text-transform: uppercase;
	font-family: Arial;
	border-radius: 5px;
}
.datepicker--time-current input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #dedede;
}
.datepicker--time-current input[type=text]::-moz-placeholder { /* Firefox 19+ */
  color: #dedede;
}
.datepicker--time-current input[type=text]:-ms-input-placeholder { /* IE 10+ */
  color: #dedede;
}
.datepicker--time-current input[type=text]:-moz-placeholder { /* Firefox 18- */
  color: #dedede;
}

.input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #808080;
}
.input::-moz-placeholder { /* Firefox 19+ */
  color: #808080;
}
.input :-ms-input-placeholder { /* IE 10+ */
  color: #808080;
}
.input moz-placeholder { /* Firefox 18- */
  color: #808080;
}
.datepicker--time{
	background-image: linear-gradient(to bottom, var(--lightgreen), var(--green));
}
.grecaptcha-logo,.grecaptcha-badge{
	display:none;
}
.cancelalert{
  z-index: 3000;
  position: absolute;
  background: #fff;
  padding: 20% 5%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
}
.cancelalert>div{
  display: inline-block;
  margin: 1% 12.5%;
  width: 25%;
}
.lkandbalance{
  font-size: 16px;
  display: flex;
  color: var(--green);
  cursor: pointer;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  display: flex;
  text-align: center;
  flex-direction: column;
}
.lkblock{
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}
.closelkb{
  display: flex;
  position: absolute;
  left: 0px;
  top: 0px;
  color: red;
  cursor: pointer;
  font-weight: bold;
  font-size: 25px;
  padding: 20px;
  margin: -20px -10px;
  z-index: 2;
  width: 80px;
}
.tinputinlk{
  position: relative;
  display: flex;
}
.logininlk,.sendmypasswordinlk,.nextstepinlk,.completereg,.confirmleavelk,.disconfirmleavelk,.restorepassbtn,.restorepassbtnsendcode,
.gotochangepass, .changepassinlk, .gotolastorders, .calltaxiinlk, .payinlk
{
  display: flex;
  text-align: center;
  text-decoration: none;  
  width: 60%;
  height: 35px;
  background-color: var(--white);
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  margin: 1em auto;
  border: 1px solid var(--green);
  cursor:pointer;
  justify-content: center;
  line-height: 2em;
}
.titleinlk{
  margin: 10% auto;
  text-align: center;
  position: relative;
  display: flex;
  font-weight: bold;
  font-size: 20px;
  flex-direction: column;
}
.iregphone,.ilogphone,.logpass,.phonerestphone{
  font-size: 16px;
  font-weight: normal;
}
.bodyinlk{
  text-align: left;
  margin: auto 1em;
  display: flex;
  flex-direction: column;
}
.changepass>.bodyinlk>.rowinlk{
	justify-content: space-between;
	display: flex;
}
.loadinginlk{
  text-align: center;
  margin-top: 50%;
}
.rowinlk{
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
}
.inputphonepasslk>input{
  width: 100%;
}
.rowinlk>div{
  width: 100%;
  display: flex;
}
.rowinlk>span:first-child,.rowinlk>input{
	margin-left: 1%;
}
.rowinlk+.rowinlk{
  margin-top: 2.5%;
}
.rowinlk .mini_title{
  width: 100px;
  text-align: left;
}
.LKuser_full_name, .LKuser_phone, .LKbalance{
  width: 125px;
}
.lavelk{
  top: 0px;
  right: 0px;
  margin-top: 1%;
  color: red;
  cursor: pointer;
  position: absolute;
}

.CPoldPassword,.CPnewPassword,.CPrepeatPassword{
  float: right;
}
.moneyselectcont{
  text-align: center;
  cursor: pointer;
}
.confclose{
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  display: none;
}
.confclose>h1{
  font-size: 32px;
  margin-bottom: 20%;
}
.button_block{
	display: flex;
	flex-direction: row;
	margin: auto;
}
img.moneyselect{
  height: 15px;
  width: 20px;
}
.costpayinlk{
	max-width: 60px;
}