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

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

body, html {
  height: 100%;
}

/*---------------------------------------------*/
a {
  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: #57b846;
}

/*---------------------------------------------*/
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;
}



input::-webkit-input-placeholder {
  color: #999999;
}

input:-moz-placeholder {
  color: #999999;
}

input::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder {
  color: #999999;
}

textarea::-webkit-input-placeholder {
  color: #999999;
}

textarea:-moz-placeholder {
  color: #999999;
}

textarea::-moz-placeholder {
  color: #999999;
}

textarea:-ms-input-placeholder {
  color: #999999;
}

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

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}




/*//////////////////////////////////////////////////////////////////
[ Contact 1 ]*/

.contact1 {
  width: 100%;
  min-height: 100%;
  /* padding: 15px; */

  background: #fff;
  background: -webkit-linear-gradient(left, #fff, #fff);
  background: -o-linear-gradient(left, #fff, #fff);
  background: -moz-linear-gradient(left, #fff, #fff);
  background: linear-gradient(left, #fff, #fff);

  /* display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;*/
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.container-contact1 {
  width: 100%;
  background: #fff;
  /* border-radius: 10px; */
  overflow: auto;
  /* height: 600px; */
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  padding: 90px 130px 88px 148px;
}

.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #efefef;
  text-align: center;
}

.right_area {
  float: right;
  margin-right: 40px;
  margin-top: 25px;
}

.login_user {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 30px;
}

.prof_img {
  width: 40px;
  border-radius: 50%;
}

.logedin_user {
  font-weight: 500;
  font-size: 15px;
}

/*------------------------------------------------------------------
[  ]*/
.contact1-pic {
  width: 296px;
}

.contact1-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.contact1-form {
  width: 339px;
}

.dash_table {
  width: 1000% !important;
  /* overflow-x: scroll; */
}

.contact1-form-title {
  display: block;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 44px;
}

input.input1 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px;
}

input.input1+.shadow-input1 {
  border-radius: 25px;
}

textarea.input1 {
  min-height: 150px;
  border-radius: 25px;
  padding: 12px 30px;
}

textarea.input1+.shadow-input1 {
  border-radius: 25px;
}

/*---------------------------------------------*/
.wrap-input1 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.input1 {
  display: block;
  width: 100%;
  background: #e6e6e6;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}

.shadow-input1 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87, 184, 70, 0.5);
}

.input1:focus+.shadow-input1 {
  -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;
  }
}

/*---------------------------------------------*/
.container-contact1-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact1-form-btn {
  min-width: 193px;
  height: 50px;
  border-radius: 25px;
  background: silver;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  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;
}

.contact1-form-btn i {
  margin-left: 7px;

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

.contact1-form-btn:hover {
  background: #333333;
}

.contact1-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}




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

@media (max-width: 1200px) {
  .contact1-pic {
    width: 33.5%;
  }

  .contact1-form {
    width: 44%;
  }
}

@media (max-width: 992px) {
  .contact1 {
    margin-top: 0px !important;
  }

  .container-contact1 {
    padding: 0px 80px 88px 90px;
  }

  .desktop_view_item {
    display: none !important;
  }

  .contact1-pic {
    width: 35%;
  }

  .contact1-form {
    width: 55%;
  }

  .search_area {
    position: relative !important;
    top: none !important;
    right: none !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
  }

  .mobile_view_items {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .container-contact1 {
    padding: 0px 80px 88px 80px;
  }

  .contact1-pic {
    display: none;
  }

  .contact1-form {
    width: 100%;
  }

  #myInput {
    width: 80% !important;
  }

  .dropdown_navbar {
    width: 95% !important;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
  }

  .search-details-dropdown {
    width: 95% !important;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 576px) {
  .container-contact1 {
    padding: 0px 15px 88px 15px;
  }

  #exit, #cancel_booking {
    font-size: 15px;
  }

  .log {
    width: 90% !important;
  }

  .email_input {
    width: 100% !important;
  }

  .article_info {
    display: block !important;
    position: static !important;
    margin: 0;
  }

  .delete_modal_content {
    width: 90% !important
  }

  .add_modal_content, .send_notification_modal_content {
    width: 100% !important;
  }

  .mobile_business {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .email_input, .business_name_input, #free_trial, .cash_payment_period {
    width: 80% !important;
  }

  .representative_input, .mydata_input, .provider_input, .slug_input {
    width: 80% !important;
  }

  .dropbtn {
    width: 80% !important;
  }

  .dropbtn_agent {
    width: 80% !important;
  }

  .success_send {
    display: block;
    margin-top: 10px !important;
    margin-left: 0px !important;
  }

  .keys-box {
    width: 100% !important;
  }
}

@media (max-width:425px) {
  .loader, .subscription_loader {
    margin-top: 5px;
  }

  .actions_modal_content {
    max-height: 400px !important;
    width: 85% !important;
  }

  .invoice_provider_token {
    width: 100% !important;
  }
}

@media (max-width:350px) {
  #myInput {
    width: 70% !important;
  }

  .email_input, .business_name_input, #free_trial, .cash_payment_period {
    width: 95% !important;
  }

  .representative_input, .mydata_input, .provider_input, .slug_input {
    width: 95% !important;
  }

  .dropbtn {
    width: 95% !important;
  }

  .dropbtn_agent {
    width: 95% !important;
  }
}


/*------------------------------------------------------------------
[ 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: 13px;
  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";
  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;
}

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

#myTable {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 18px;
}

#myTable th, #myTable td {
  text-align: left;
  padding: 12px;
}

#myTable tr {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

#myTable tr.header, #myTable tr:hover {
  background-color: #f1f1f1;
}

.error_msg1, .error_msg2 {
  color: rgb(255, 255, 255);
  font-weight: 500;
  background-color: #cc2059;
  padding: 5px !important;
  text-align: center;
  border-radius: 10px;
}

.hide {
  display: none !important
}

/* The Modal (background) */
.modal {
  display: block;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-content p {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

#datepicker {
  border-radius: 5px;
  border: 2px solid #666666;
  width: 200px;
  padding: 8px;
}

#select_time, #select_class {
  border-radius: 5px;
  border: 2px solid #666666;
  width: 200px;
  padding: 8px;
}

/* .disabled-btn{
pointer-events: none;
opacity: 0.2;
} */
.hide {
  display: none;
}

.loading {
  width: 50px;
}

/* The Modal (background) */
.cancel_modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.cancel_modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 5px;
}

.cancel_modal-content p {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.cancel_modal-content span {
  color: #000;
  font-weight: 400;
}

.article img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.img_area {
  display: inline-block;
}

.title {
  font-size: 17px;
  color: #000;
  font-weight: 700;
}

.date {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-weight: 500;
}

.edit {
  cursor: pointer;
  color: #fff;
  background-color: #19c27b;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.delete {
  cursor: pointer;
  color: #fff;
  background-color: #eb2c2c;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.article {
  margin-bottom: 20px;
}

.article_info {
  display: inline-block;
  margin-left: 20px !important;
  position: absolute;
  margin: 0;
}

.delete_modal {
  display: none;
  position: fixed;
  z-index: 1014;
  padding-top: 200px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
}

.delete_modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  width: 450px;
  overflow-y: auto
}

.delete_close {
  color: silver;
  float: right;
  margin-top: -20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.delete_yes {
  cursor: pointer;
  color: #fff;
  background-color: silver;
  border: 2px solid silver;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 16px;
}

.delete_no {
  cursor: pointer;
  color: silver;
  background-color: #fff;
  padding: 5px 10px;
  border: 2px solid silver;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 16px;
}

.wait {
  color: #000;
  font-size: 16px;
}

.add_article {
  background-color: silver;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  width: 150px;
  text-align: center;
  font-weight: 700;
  float: right;
}

.add_modal {
  display: none;
  position: fixed;
  z-index: 1013;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.add_modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  padding-bottom: 100px;
}

.add_close, .provider-menu-close {
  color: #000;
  font-size: 22px;
  cursor: pointer;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
  padding: 4px 12px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 8px;
  margin-right: 8px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.send_notification_modal {
  display: none;
  position: fixed;
  z-index: 1013;
  padding-top: 90px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.send_notification_modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  width: 600px;
  height: 500px;
  position: relative;
  overflow-y: auto;
}

.send_notification_close, .keys-close, .users-close, .add-user-close {
  color: #000;
  font-size: 22px;
  cursor: pointer;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
  padding: 4px 12px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 8px;
  margin-right: 8px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.send_notification_close:active, .keys-close:active, .users-close:active, .add-user-close:active {
  opacity: 0.8;
}

.actions_modal {
  display: none;
  position: fixed;
  z-index: 1013;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.actions_modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  width: 350px;
  position: relative;
  overflow-y: auto;
}

.actions_close {
  color: #000;
  font-size: 22px;
  cursor: pointer;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
  padding: 4px 12px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 8px;
  margin-right: 8px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.add_modal p {
  font-size: 15px;
  color: grey;
  font-weight: 700;
  margin-bottom: 2px !important;
}

.email_input, .business_name_input, #free_trial, .cash_payment_period {
  border-radius: 5px;
  padding: 6px 12px;
  color: #000;
  border: 2px solid grey;
  width: 50%;
  display: block;
}

.representative_input, .mydata_input, .provider_input, .slug_input {
  border-radius: 5px;
  padding: 6px 12px;
  color: #000;
  border: 2px solid grey;
  width: 50%;
  display: block;
  margin-bottom: 10px;
}

.add_btn {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #19c27b;
  color: #fff !important;
  border-radius: 5px;
  width: 150px;
  text-align: center;
}

.cancel_btn {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  background-color: grey;
  color: #fff !important;
  border-radius: 5px;
  width: 150px;
  text-align: center;
  margin-right: 5px;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

#myInput {
  width: 70%;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 5px;
}

.search_btn {
  background-color: rgb(17, 32, 51);
  color: #fff;
  text-align: center;
  padding: 8px 20px 8px 20px;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

#myTable {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 18px;
}

#myTable th, #myTable td {
  text-align: left;
  padding: 12px;
  font-size: 16px;
}

#myTable tr {
  border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover {
  background-color: #f1f1f1;
}

.loader, .loader_delete {
  width: 30px;
}

.main_loader {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo_frm {
  width: 60px;
  float: left;
  margin-left: 40px;
  margin-top: 10px;
}

.login_btn {
  background-color: #20d1c2;
  font-size: 17px;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 7px;
  text-align: center;
  margin-bottom: 20px;
}

.delete_bsn {
  background-color: #d12055;
  color: #fff;
  font-size: 17px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 7px;
  text-align: center;
  margin-bottom: 20px;
}

.edit_bsn {
  background-color: #f1b40a;
  color: #fff;
  font-size: 17px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 7px;
  text-align: center;
  margin-bottom: 20px;
}

/* ==========Login form=========== */
.clear {
  clear: both;
}

.log {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background-color: #FFF;
  padding: 30px 0;
  border-radius: 10px;
}

.log h2 {
  text-align: center;
  color: #ff3656;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 50px;
}

.log .input-cont {
  position: relative;
  margin: 0 50px 3px;
}

.fail_msg {
  margin-left: 50px;
  color: #eca50b;
}

.error_msg {
  text-align: center;
  font-weight: 700;
  color: #d81d7b;
}

.space {
  margin-bottom: 50px;
}

.log .input-cont:last-of-type {
  margin-bottom: 30px;
}

.log .input-cont input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  outline: none;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  background: none;
  border: none;
}

.log .input-cont input:focus {
  outline: none;
}

.log .input-cont label {
  position: absolute;
  color: #948c8c;
  margin-top: -25px;
  top: 0;
  left: 0;
  line-height: 40px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.log .input-cont input:focus+label {
  margin-top: -35px;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  color: #bdbdbd;
}

.log .border1,
.log .border2 {
  position: absolute;
  height: 1px;
  background-color: #9E9E9E;
  left: 0;
  bottom: 0;
  width: 100%;
}

.log .border1::after,
.log .border1::before,
.log .border2::after,
.log .border2::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.log .border1::after,
.log .border2::after {

  right: 50%;
  background-color: #ff3656;
}

.log .border1::before,
.log .border2::before {
  left: 50%;
  background-color: #ff3656;
}

.log .input-cont input:focus~.border1::after,
.log .input-cont input:focus~.border1::before,
.log .input-cont input:focus~.border2::after,
.log .input-cont input:focus~.border2::before {
  width: 50%;
}

.log .check,
.log a {
  float: left;
  width: calc(50% - 50px);
  display: block;
  font-size: 12px;
  margin-bottom: 30px;
}

.log .check {
  margin-left: 50px;
}

.log a {
  text-align: right;
  text-decoration: none;
  color: #ff3656;
}

.log a:hover {
  text-decoration: underline;
  color: #ff3656;
}

.log form input[type="submit"] {
  display: block;
  margin: 0 auto 20px;
  border: 2px solid transparent;
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #ff3656;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.log form input[type="submit"]:focus {
  outline: none;
}

.log form input[type="submit"]:hover {
  border: 2px solid #ff3656;
}

.login_image {
  width: 90px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.loader_login {
  width: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#get_business_loader {
  width: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.business_not_found {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 500;
}

.dropbtn {
  background-color: #ff3656;
  color: white;
  padding: 6px 12px;
  font-size: 16px;
  border: 1px solid #ff3656;
  border-radius: 5px;
  cursor: pointer;
  width: 50%;
  text-align: left;
}

.dropdown {
  position: relative;
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  width: 50%;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown-content a:hover {
  color: #ff3656 !important;
}

.fa-angle-down {
  float: right;
  font-size: 20px !important;
  font-weight: 500 !important;
  margin-top: 3px;
}

.divider {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid silver;
  text-align: center;
  width: 100%;
}

.notification_box {
  display: none;
  position: fixed;
  z-index: 2014;
  right: 0;
  top: 0;
  padding: 10px 15px;
  margin-top: 90px;
  margin-right: 30px;
  max-width: 300px;
  height: auto;
  background-color: rgb(255, 174, 0);
  color: #fff;
  border-radius: 7px;
}

.notification_close {
  color: #fff;
  float: right;
  margin-top: -10px;
  font-size: 25px;
  cursor: pointer;
}

.notifcation_msg {
  color: #fff;
  font-size: 16px;
}

.required {
  font-weight: 700;
  font-size: 20px;
  color: #e72343;
}

.cancel_subscription, .active_subscription, .insert_subscription {
  font-size: 14px !important;
  cursor: pointer;
  border-radius: 5px;
  padding: 7px;
  display: inline-block;
  font-weight: 400 !important;
  width: 120px;
  text-align: center;
  margin-right: 7px;
}

.insert_subscription {
  background-color: rgb(24, 194, 206);
  color: #fff !important;
}

.cancel_subscription {
  background-color: rgb(255, 174, 0);
  color: #fff !important;
}

.active_subscription {
  background-color: rgb(15, 177, 136);
  color: #fff !important;
}

.disabled_action {
  pointer-events: none;
}

.subscription_loader {
  display: inline-block;
  width: 30px;
}

.navbar_header {
  overflow: hidden;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  padding-bottom: 10px;
  -webkit-box-shadow: 0 8px 6px -6px rgb(190, 190, 190);
  -moz-box-shadow: 0 8px 6px -6px rgb(190, 190, 190);
  box-shadow: 0 8px 6px -6px rgb(190, 190, 190);
  z-index: 1001;
}

.dropbtn_agent {
  background-color: silver;
  color: white;
  padding: 6px 12px;
  font-size: 16px;
  border: 1px solid silver;
  border-radius: 5px;
  cursor: pointer;
  width: 50%;
  text-align: left;
}

.dropdown_agent {
  position: relative;
  display: block;
}

.dropdown-content_agent {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  width: 50%;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 150px;
}

.dropdown-content_agent a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown-content_agent a:hover {
  color: grey !important;
}

.partnerships {
  color: #ff3656;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

.total_business {
  color: grey !important;
  font-weight: 500 !important;
}

.trial_months {
  font-weight: 600 !important;
  margin-left: 5px !important;
  margin-top: 5px;
  color: #ff3656 !important;
}

.trial_period {
  font-weight: 500 !important;
  color: #000 !important;
}

.desktop_view {
  display: block;
}

.mobile_view {
  display: block;
  font-size: 26px;
  color: silver;
  cursor: pointer;
}

.dropdown_navbar {
  display: block;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%), 0 1px 3px 0 rgb(0 0 0 / 8%);
  position: fixed;
  top: 0;
  margin-top: 90px;
  padding: 16px;
  width: 250px;
  right: 0;
  margin-right: 40px;
  z-index: 1001;
}

.dropdown_navbar p {
  cursor: pointer;
}

.dropdown_navbar .login_user {
  display: block;
  text-align: left;
}

.mobile_view_items {
  display: none;
}

.mobile_business {
  margin-top: 130px;
  padding-left: 90px;
  padding-right: 80px;
}

.contact1 {
  margin-top: 50px
}

.desktop_view_item {
  display: block;
}

.search_area {
  position: absolute;
  top: 0;
  right: 0 !important;
  margin-top: 310px;
  margin-right: 103px;
  z-index: 1000;
}

.interconnection, .printer_tickets {
  display: inline-block;
  font-size: 14px;
  background-color: rgb(233, 233, 233);
  color: rgb(78, 78, 78);
  padding: 7px 8px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 5px;
}

.interconnection.checked, .printer_tickets.checked {
  border: 2px solid #ff3656;
  /* font-weight: 600;
  color:#000 */
}

#cash_payment {
  background-color: #1cb4a7;
  color: #fff;
  border-color: #1cb4a7;
  padding: 7px 10px;
  border-radius: 6px;
  margin-top: 15px;
}

.cash_payment_loader {
  width: 26px;
  margin-left: 20px;
}

.success_cash_pay {
  color: #1dc99e;
  margin-left: 15px;
  font-size: 25px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #cccccc;
}

.recepient {
  border-radius: 7px;
  background-color: rgb(194, 194, 194);
  color: #fff;
  padding: 7px 10px;
  text-align: center;
  font-size: 15px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  cursor: pointer;
  margin-bottom: 15px;
  display: inline-block;
  border-color: rgb(194, 194, 194);
}

.recepient.checked {
  border: 2px solid rgb(83, 83, 83);
}

.selection_area {
  border-radius: 7px;
  overflow-y: auto;
  width: 100%;
  min-height: 200px;
  max-height: 250px;
  border: 2px solid silver;
  padding: 15px;
}

.subscription_selections p, .business_selections p {
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #efefef;
  white-space: nowrap;
  width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subscription_description, .business_id {
  font-size: 13px !important;
}

.subscription_selections .checked, .business_selections .checked {
  color: #ff3656;
}

.subscription_selections i, .business_selections i {
  color: #1eac71;
  display: none;
  margin-right: 5px;
}

.subscription_selections .checked i, .business_selections .checked i {
  color: #1eac71;
  display: inline-block !important;
}

.notification_message {
  width: 100%;
  border-radius: 7px;
  border: 1px solid silver;
  padding: 13px;
}

.send_notification {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #2bc798;
  color: #fff !important;
  border-radius: 7px;
  margin-top: 15px;
  font-size: 16px;
}

.send_notification_loader {
  margin-left: 15px;
  width: 25px;
}

.success_send {
  font-size: 14px;
  font-weight: 600;
  color: #2bc798;
  margin-left: 20px;
}

.block_btn {
  padding: 7px 20px;
  background-color: rgb(245, 0, 0);
  color: #fff;
  cursor: pointer;
  border-radius: 7px;
  border: 1px solid rgb(245, 0, 0);
  margin-right: 10px;
  margin-bottom: 10px;
}

.unblock_btn {
  padding: 7px 20px;
  background-color: rgb(0, 219, 135);
  color: #fff;
  cursor: pointer;
  border-radius: 7px;
  border: 1px solid rgb(0, 219, 135);
  margin-right: 10px;
}

.status_success_message {
  font-size: 13px !important;
  font-weight: 600;
}

#auto_renew {
  margin: 15px 0 0 0;
}

#bridge_wolt, #test_wolt_env, #bridge_efood, #test_efood_env, #digital_menu_enabled, #digital_menu_blocked, #bridge_efood2, #test_efood_env2 {
  margin: 15px 0 15px 0;
}

.toggle {
  margin: 5px 0 0 0;
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 3.4rem;
}

.toggle input {
  display: none;
}

.roundbutton {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #cccccc;
  display: block;
  transition: all 0.3s;
  border-radius: 3.4rem;
  cursor: pointer;
}

.roundbutton:before {
  position: absolute;
  content: "";
  height: 2.4rem;
  width: 2.5rem;
  border-radius: 100%;
  display: block;
  left: 0.5rem;
  bottom: 0.5rem;
  background-color: white;
  transition: all 0.3s;
}

.auto_renew:checked+.roundbutton, .bridge_wolt:checked+.roundbutton, .test_wolt_env:checked+.roundbutton, .bridge_efood:checked+.roundbutton, .test_efood_env:checked+.roundbutton, .digital_menu_enabled:checked+.roundbutton, .digital_menu_blocked:checked+.roundbutton, .setting-toggle:checked+.roundbutton, .orb_enabled:checked+.roundbutton, .ssk_enabled:checked+.roundbutton, .kds_enabled:checked+.roundbutton, .bridge_efood2:checked+.roundbutton, .test_efood_env2:checked+.roundbutton {
  background-color: #0de3a0;
}

.auto_renew:checked+.roundbutton:before, .bridge_wolt:checked+.roundbutton:before, .test_wolt_env:checked+.roundbutton:before, .bridge_efood:checked+.roundbutton:before, .test_efood_env:checked+.roundbutton:before, .digital_menu_enabled:checked+.roundbutton:before, .digital_menu_blocked:checked+.roundbutton:before, .setting-toggle:checked+.roundbutton:before, .orb_enabled:checked+.roundbutton:before, .ssk_enabled:checked+.roundbutton:before, .kds_enabled:checked+.roundbutton:before, .bridge_efood2:checked+.roundbutton:before, .test_efood_env2:checked+.roundbutton:before {
  transform: translate(2.6rem, 0);
}

.toggle_text {
  display: block;
}

.test_enviroment {
  border-radius: 7px;
  background-color: rgb(233, 233, 233);
  color: rgb(78, 78, 78);
  border: 1px solid rgb(233, 233, 233);
  cursor: pointer;
  padding: 6px 12px;
  margin-bottom: 15px;
}

.test_enviroment.checked {
  border: 2px solid #ff3656;
}

.enviroments {
  margin-bottom: 10px;
}

.enviroments span {
  padding: 10px 10px 10px 10px;
  margin-right: 10px;
  color: #001969;
  font-size: 16px;
  cursor: pointer;
}

.enviroments .selected {
  background-color: #0b1c4d;
  border-radius: 7px;
  color: #fff;
}

.add_modal_footer {
  width: 100%;
  background-color: #fff;
  padding: 20px 20px 18px 20px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  text-align: left;
  position: fixed;
  left: 0;
  bottom: 0;
}

.add_modal label {
  font-weight: 500 !important;
}

.providers p {
  color: grey;
  font-size: 14px;
  text-decoration: underline;
}


.provider_menu {
  border-radius: 7px;
  cursor: pointer;
  background-color: rgb(190, 190, 190);
  color: #fff;
  padding: 5px 10px;
  border: 1px solid rgb(190, 190, 190);
  margin-bottom: 20px;
}

.loader_efood_menu, .loader_wolt_menu, .loader_efood_menu2 {
  width: 25px;
  margin-left: 5px;
}

.invoice_provider_token {
  border-radius: 7px;
  border: 2px solid silver;
  margin-top: 10px;
  padding: 6px 10px;
  width: 300px;
}

.provider-menu-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 30px;
  overflow-y: auto;
}

.provider-menu-modal h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.provider-menu-modal .display-menu p {
  font-weight: 600;
  font-size: 15px;
}

.provider-menu-modal .display-menu span {
  font-weight: 400 !important;
}

.copy-menu-btn {
  padding: 8px;
  margin-right: 10px;
  border-radius: 7px;
  cursor: pointer;
  background-color: #1f465c;
  background-image: linear-gradient(45deg, #1f465c, #5987a1);
  border: none;
  color: #fff;
  box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 10px;
  margin-right: 70px;
}

.copy-menu-btn:hover,
.copy-menu-btn:active {
  background-image: linear-gradient(45deg, #5987a1, #1f465c);
}

.search-details {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 90px;
  margin-top: 25px;
}

.search-details-dropdown {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  margin-right: 90px;
  margin-top: 100px;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px;
  width: 300px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}

.search-details-dropdown.opened {
  display: block;
}

.tax-id-area {
  width: 100%;
  display: flex;
  gap: 5px;
}

.business-tax-id {
  flex: 8;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  color: #000;
}

.search-details-btn {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 17px;
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-details-btn i {
  margin: 0;
}

.search-details-btn:hover {
  background-color: #0056b3;
}

/* For Chrome, Safari, Edge, and Opera */
.no-arrow::-webkit-inner-spin-button,
.no-arrow::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
.no-arrow {
  -moz-appearance: textfield;
}

.search-details-dropdown.loading {
  pointer-events: none;
  min-height: 150px;
}

#details_loader {
  width: 30px;
  display: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.search-details-dropdown.loading #details_loader {
  display: block;
}

.details-results {
  margin-top: 20px;
  cursor: auto !important;
}

/* The Modal (hidden by default) */
.keys-wrapper {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content box */
.keys-box {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 400px;
  border-radius: 10px;
  position: relative;
}

/* Footer */
.keys-footer {
  margin-top: 20px;
  text-align: left;
}

#keys_cancel, .users-close-btn, .add-user-close-btn, .user-settings-close-btn {
  background-color: #eeeeee;
  /* light gray background */
  color: #333;
  /* dark text */
  border: 1px solid #eeeeee;
  /* subtle border */
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#keys_cancel:hover, .users-close-btn:hover, .add-user-close-btn:hover, .user-settings-close-btn:hover {
  background-color: #e0e0e0;
  /* darker on hover */
}

#keys_cancel:active, .users-close-btn:active, .add-user-close-btn:active, .user-settings-close-btn:active {
  background-color: #d6d6d6;
  /* pressed state */
}

.key-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* Toggle Switch (unique for keys) */
.keys-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.keys-status {
  font-size: 13px;
  color: #555;
  font-weight: 400 !important;
  position: absolute;
  top: 0;
  margin-top: -20px;
}

.keys-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.keys-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 24px;
}

.keys-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.keys-toggle input:checked+.keys-slider {
  background-color: #11438f;
}

.keys-toggle input:checked+.keys-slider:before {
  transform: translateX(20px);
}

/* Buttons */
.ux-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #3b82f6;
  color: #fff;
  cursor: pointer;
}

#saveUserBtn, #saveUserSettingsBtn {
  background-color: #3b82f6;
  color: #fff;
  border: 1px solid #3b82f6;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#saveUserBtn:hover, #saveUserSettingsBtn:hover {
  background-color: #2165d3;
}

.ux-btn:active {
  transform: translateY(1px);
}

.ux-btn--secondary {
  background: transparent;
  border-color: #1f2937;
  color: #e2e8f0;
}

.ux-btn--success {
  background: #22c55e;
}

.ux-btn--danger {
  background: #ef4444;
}


/* Modal */
.ux-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 1002;
}

.ux-modal.is-open {
  display: grid;
}

.ux-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.473);
}

.ux-dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 650vw);
  background: #ffffff;
  border: 1px solid #bebebe;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

@media screen and (max-width:767px) {
  .ux-dialog {
    width: 90% !important;
  }

}

.ux-dialog--sm {
  width: min(640px, 92vw);
}

.ux-dialog__header, .ux-dialog__footer {
  padding: 16px 20px;
  border-bottom: 1px solid #bebebe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ux-dialog__footer {
  border-top: 1px solid #bebebe;
  border-bottom: none;
}

.ux-dialog__title {
  font-size: 18px;
  font-weight: 500;
}

.ux-dialog__body {
  padding: 16px 20px;
  overflow: auto;
}

.ux-users {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ux-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #bebebe;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.ux-user:hover {
  background: #dbdbdb;
  border-color: #dbdbdb;

}

.ux-user__main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ux-user__name {
  font-weight: 700;
}

.ux-badge {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #203047;
  color: #203047;
  font-size: 12px
}

.ux-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ux-delete, .ux-edit {
  border: none;
  background: transparent;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 15px;
}


/* Form */
.ux-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ux-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.ux-label {
  color: #94a3b8;
}


.ux-input, .ux-select {
  background: #fff;
  color: #000000;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  padding: .7rem .9rem;
  outline: none;
}

.ux-input:focus, .ux-select:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .2);
}


@media (max-width:720px) {
  .ux-grid {
    grid-template-columns: 1fr;
  }
}

#btnAdd {
  background-color: #11438f;
  border: none;
  font-weight: 400;
  border-radius: 7px;
  margin-right: 45px;
}

#btnAdd:hover {
  background-color: #0b2957;
}

@keyframes ux-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Button must be relatively positioned */
.ux-btn {
  position: relative;
  overflow: hidden;
}

/* Loading state */
.ux-btn--loading {
  pointer-events: none;
  padding-left: 1rem;
  padding-right: 2.5rem;
  width: 130px;
}

.ux-btn--loading::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ux-spin .8s linear infinite;
  position: absolute;
  left: auto;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.ux-input[disabled],
.ux-select[disabled] {
  background: #9db0c6;
  ;
  border-color: #9db0c6;
  ;
  cursor: not-allowed;
  opacity: 1;
  /* keep full opacity across browsers */
}

/* Optional: dim placeholder too */
.ux-input[disabled]::placeholder {
  color: #9db0c6;
}

.ux-title {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ux-permissions {
  margin-bottom: 20px;
}

.perm-item {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  min-height: 72px;
  background: #ffffff;
}

.perm-item:last-child {
  border-bottom: none;
}

.perm-item:hover {
  background: #fbfbfc;
  border-color: #d1d5db;
}

.perm-left {
  flex: 1 1 auto;
  min-width: 0;
}

.perm-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.perm-subtitle {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: #6b7280;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}