@font-face {
  font-family: Playfair Display;
  src: url(../font/static/PlayfairDisplay-Regular.ttf);
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Playfair Display;
  font-size:14pt;
}

/*---------------------------------------------*/
a {
	font-family: Playfair Display;
	font-size: 14px;
	line-height: 1.7;
	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: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Playfair Display;
	font-size: 14pt;
	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:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Playfair Display;
  font-size: 13pt;
  color: #666666;
  line-height: 1.5;
}

.txt2 {
  font-family: Playfair Display;
  font-size: 13pt;
  color: #333333;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
      border: 1px solid #E1E1E1;
  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;
  font-size:14px;
  /*background: #f2f2f2;  */
}

.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 77px 55px 33px 55px;

/*  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);*/
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.login100-form-title i {
  font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #adadad;
  margin-bottom: 37px;
}

.input100 {
  font-family: Playfair Display;
  font-size: 15pt;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  background: -o-linear-gradient(left, #21d4fd, #b721ff);
  background: -moz-linear-gradient(left, #21d4fd, #b721ff);
  background: linear-gradient(left, #21d4fd, #b721ff);
}

.focus-input100::after {
  font-family: Playfair Display;
  font-size: 15pt;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -15px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -15px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15pt;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-show-pass:hover {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

.btn-show-pass.active {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 15pt;
  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: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding:7% 15px 3% 15px;
  }
}



/*------------------------------------------------------------------
[ 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: 2px;
  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: 0px;
  pointer-events: none;

  font-family: Playfair Display;
  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: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

.temp p
{
  text-align: center;
  font-size:11pt;
}

.txt
{
  font-weight: bold;

}
.temp p.qrcode
{
  margin-bottom:85px;
}
.temp p button
{
  padding:12px 50px;
  background: #ECD454;
  color: #000;
      width: 100%;
      margin-bottom:30px;
}
.temp p a, .drink p a
{
  text-decoration: underline;
}
.num
{
  color:#ECD454;
  margin-bottom:20px;
  font-weight: bold;
}
p.frm
{
  text-align: center;
  margin-bottom:38px;
}
p.frm input[type=text]
{
  text-align: center;
  border:0px;
  background:#F6F6F6;
  margin-bottom:10px;
  font-size: 14px;

}
.grid .col-sm-6
{
  text-align: center;
}
.grid-item 
{
  display: inline-block;
}
.temp table td, table th, .drink table td, .drink table th
{
  border-top:0px;
}
.grid-item  h4
{
  font-size:14px;
  font-weight: bold;
  margin-top:10px;
}
.txt img
{
  width:100%;
}
a.bg
{
      background: url(../images/white-and-black-bottle-near-grapes-1407846.svg) no-repeat;
    width: 122px;
    display: block;
    height: 122px;
}
a.bg img
{
    
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
   
}
.drink a.bg
{
   background: url(../images/clear-drinking-glass.svg) no-repeat;
   width:122px;
   height: 122px;
   display: block;
  
}

 .grid-item
{
   margin-bottom:15%;
}

.drink p
{
  text-align: center;
}
.top_menu
{
  text-align: left
}
.top_menu td
{
  padding:0px;
  font-size:24px;
}
.top_menu td a
{
    font-size:16pt;
}
.title
{
  margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    margin-top: 10pt;
}
.para
{
  font-size: 14px;font-weight: normal;margin-bottom:26px
}
.mat
{
    font-size: 14px !important;
    text-align: left !important;
    margin-bottom: 30px;

}
.frm1 input[type=text]
{
  height: 42pt;
  background:#F6F6F6;
  margin-bottom:10pt;
  border:0px;
      font-size: 14px;
}
.table td
{
  padding:0px;
}
.frm1 input[name=search]
{
background: #ECD454;
    border: 0px;
    border-left: 9px solid #fff;
    border-radius: 0px;
    height: 41pt;
    /* font-weight: bold; */
    font-size: 14px;

}



.icon_relative {

  line-height:90px;
  font-size: 30px;
  color: #fff;
  background: #f0f0f0;
  text-align: center;
  border-radius: 3px;
  padding: 10px;
  margin-bottom:10px;
}
.course_box span {
  color: #333;
    text-align: center;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-transform: capitalize;
}
.fl-col{
  -ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
padding:0 7px;
margin-bottom: 14px;
}

.course_box h4
{
font-size: 12pt;
    font-family: Playfair Display;
    font-weight: bold;
    line-height: 17pt;
    margin: 10pt 0pt; 
}
.course_box span, .abv
{
  color:#ECD454;
  font-size:14px;
  text-align: left !important;
      margin-bottom: 2%;
}
h4.price
{
  font-size:15pt;
}
.quantity {
 display: inline-block; }

.quantity .input-text.qty {
 width: 35px;
 height: 39px;
 padding: 0 5px;
 text-align: center;
 background-color: transparent;
 border: 1px solid #efefef;
}

.quantity.buttons_added {
 text-align: left;
 position: relative;
 white-space: nowrap;
 vertical-align: top; }

.quantity.buttons_added input {
 display: inline-block;
 margin: 0;
 vertical-align: top;
 box-shadow: none;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
 padding: 7px 10px 8px;
 height: 41px;
 background-color: #ffffff;
 border: 1px solid #efefef;
 cursor:pointer;}

.quantity.buttons_added .minus {
 border-right: 0; }

.quantity.buttons_added .plus {
 border-left: 0; }

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
 background: #eeeeee; }

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 -moz-appearance: none;
 margin: 0; }
 
 .quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
 outline: none; }

 .add_qunt
 {
  border:1px solid #707070;
  border-radius: 2px;
    margin-top: 20%;
    margin-bottom: 20%;
 }
  .add_qunt button
  {
        background: #ecd454;
    /* padding: 10px; */
    font-size: 12pt;
    font-weight: bold;
    padding: 5px 8px;
  }
  .add_qunt input[type=number]
  {
        width: 45px;
        text-align: center;

  }
  .add_qunt input[type=button]
  {
    background:none;
  }
  .add_qunt input
  {
       font-size: 14pt;
    padding: 0px 2px;
  }
  /*.top_menu td
  {
    font-size:15pt;
  }*/
  /*-----------screens-----------*/
  .screen1 p, .screen2 p,   .screen3 p,  .screen4 p, .screen9 p
  {
    text-align: center;
        width: 100%;

  }
  .screen1 .txt
  {
    font-size:24px;
  }
  .screen1 img
  {
    width:184px;
    margin-bottom:60px;
  }
  .screen1 p button, .screen2 p button,  .screen3 p button, .placeorder, .addorder
  {
  padding:12px 50px;
  background: #ECD454;
  color: #000;
  width: 100%;
  margin:6% 0px;
      font-weight: bold;
  }
  .screen1 p a
  {
    text-decoration: underline;
  }
  .screen2 img
  {
    width:164px;
  }
  .screen2 p button,  .screen3 p button
  {
    margin-bottom:3%  !important;
  }
  .screen3 .txt
  {
    font-size:14px;
    line-height: 25px;
    margin-top: 5%;
    margin-bottom: 30%;
  }
  .screen3  input[type=text]
  {
    height: 48px;
  }
   .screen3 a,    .screen3 p a
   {
    color:#333;
    font-weight: bold;
    font-size:14px;
   }
   .screen1 p button i, .screen2 p button i,  .screen3 p button i
   {
    padding-left:20px;
   }

   .screen3 p a.under
   {
    text-decoration: underline;
    font-weight: normal
   
   }
    .screen4 img.checkin
    {
      width:100px;
    }
    .screen2 a
    {
      text-decoration: underline;
      color:#333;
    }
    .screen4
    {
      padding:0px !important;
    }
    .screen4 .icon_relative
    {
       
    width: 122px;
    margin: auto;
    height: 122px;

    }
    .screen4 h4, .screen9 h4
    {
      text-align: center;
          font-size: 14px;
    }
    .pad
    {
      padding:10%;
    } 
   .basket
    {

    margin-top: -4px;
    margin-left: 2px;
    }

  .fa-angle-left:before {
    font-weight: bold;
    font-size: 21pt;
  }
  .screen9 h4
  {
    font-weight: bold;
    text-align: left;
        margin-bottom: 3%;
  }
.screen9 p.txt, .screen9 .size_box p, p.frm, .voucher p
{
  font-size:14px;
  text-align: left !important;
}
.screen9 .size_box p
{
color: #414A68;
    font-weight: bold;
}
.screen9 .size_box ul
{
  padding:0px;
  margin:0px;
  width: 100%;
  clear: both;
  margin-top: 2%;
  display: block;
  overflow: hidden;
  margin-bottom: 8%;

}
.screen9 .size_box ul li
{
  float:left;
  font-size:18px;
  background: #F5F5F5;
  padding:10px 15px;
  border-radius:2px;
  margin-right:10px;
  list-style: none;
  font-weight: bold;
  height: 47px;

} .screen9 .size_box ul li.active { background: #ECD454; } /*.screen9
.size_box ul li.last { font-size:10px; }*/ .screen9  p button { padding:10px
15px; color:#fff; border: 0px; background: #414A68; border-radius: 3px;
font-size: 14px; margin-bottom: 10%; } 
.screen9 p.frm input[type=text] {
height: 38px; padding: 10px; width: 76%; border-radius: 3px; 
border: 1px solid
#707070 !important; background: none; } .screen9 p.frm input[type=submit] { width: 20%;
background: #414A68; color: #fff; border-radius: 3px; height: 38px; float:
right;

}
.price 
{
    border: 0px !important;
    width: 100%;
    margin: 10% 0;
    display: block;
    height: 100%;
    
    overflow: hidden;
}
.price  span
{
  float:left;
  color:#414A68;
  font-size:35px;
}
.price  .quantity
{
  float:right;
  font-size:35px;
}
.price  .quantity input[type=number]
{
  border:1px solid #707070;
  font-size:26px;
}
.price   .quantity .minus, .quantity .plus
{
    color: #999999;
    font-size: 17px;
    padding: 0px 10px;
    font-weight: bold;
}
.voucher p
{
  margin-bottom:16px;
}
.addorder
{
  background:none;
  border:1px solid #707070;
}
 .addorder {
      margin: 3% 0px !important;
  }
  .screen9 p.txt
  {
    margin-bottom:4%;
  }
  .wine a.bg img {
    position: relative;
    top: 50%;
    transform: translateY(-38%);
    text-align: center;
}
.bottle a.bg img
{
  transform: translate(14%, -50%);
}
.soft_drinks a.bg img
{
  transform: translate(-10%, -56%);
}
.spirits a.bg img
{
      transform: translate(15%, -56%);
}

.wine .course_box h4 {
  text-align: center;
}
.wine .icon_relative
{
  height:122px;
  width: 90%;
  border-radius:10px;
  margin:auto;
}

.wine .course_box
{
  margin: auto;
  text-align: center;
}
.modal-dialog .modal-header {
    background: #fb3;
}
.login.modal-title {
    width: 80%;
    text-align: left;
    font-size: 24px !important;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}
.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}