/* You can add global styles to this file, and also import other style files */
body {
    direction: rtl;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0px;
}

:host {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 8px 0;
  }

  p {
    margin: 0;
  }

  .spacer {
    flex: 1;
  }

  .content {
    display: flex;
    margin: 82px auto 32px;
    padding: 0 16px;
    max-width: 960px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 0px solid blue;
    min-height: 750px;
  }
  a,
  a:visited,
  a:hover {
    color: #1976d2;
    text-decoration: none;
  }

  a:hover {
    color: #125699;
  }
  a.btn{
    color: #FFF;
  }


  footer {
    margin-top: 8px;
    display: relative;
    align-items: center;
    line-height: 20px;
  }

  footer a {
    display: flex;
    align-items: center;
  }

/*  example from wc3  */
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Style the header */
  header {
    background-color: #666;
    padding: 30px;
    text-align: center;
    font-size: 35px;
    color: white;
  }
  
  /* Create two columns/boxes that floats next to each other */
  nav {
    float: left;
    width: 30%;
    height: 300px; /* only for demonstration, should be removed */
    background: #ccc;
    padding: 20px;
  }
  
  /* Style the list inside the menu */
  nav ul {
    list-style-type: none;
    padding: 0;
  }
  
  article {
    float: left;
    padding: 20px;
    width: 70%;
    background-color: #f1f1f1;
    height: 300px; /* only for demonstration, should be removed */
  }
  
  /* Clear floats after the columns */
  section::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the footer */
  footer {
    background-color: #777;
    padding: 10px;
    text-align: center;
    color: white;
  }
  
  /* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
  @media (max-width: 600px) {
    nav, article {
      width: 100%;
      height: auto;
    }
  }

form {
    background: #fff;
    max-width: 400px;
    min-width:100px;
    margin: 15px;
    border-radius: 12px;
    direction:rtl;
    padding: 15px;

    
  }
    h2 {
      margin:0 0 10px 0;
      padding:10px;
      text-align:center;
      font-size:30px;
      color:#1273EB;
      border-bottom:solid 0px #e5e5e5;
    }
    p {
      margin: 0 0 0.9em 0;
      position: relative;
    }
    input {
      display: block;
      box-sizing: border-box;
      width: 100%;
      outline: none;
      margin:0;
  
    }
    input[type="text"]:-moz-placeholder,
    input[type="password"]:-moz-placeholder
    {
      text-align: right;
    }
    input[type="text"]:-ms-input-placeholder,
    input[type="password"]:-ms-input-placeholder  
    {
      text-align: right;
    }
    input[type="text"]::-webkit-input-placeholder,
    input[type="password"]::-webkit-input-placeholder
    {
      text-align: right;
    }
  
    input[type="text"],
    input[type="password"] {
      background: #fff;
      border: 1px solid #dbdbdb;
      padding: .8em .5em;
      border-radius: 2px;
      direction:ltr;
      text-align: left;
    }
    input#fullname,
    input#firstname,
    input#lastname
    {
      direction:rtl;
      text-align: right;
    }

    input#fullname,
    input#email,
    input#submit
    {
      width: 90%;
      margin: 10px;
    }
    




    input[type="text"]:focus,
    input[type="password"]:focus {
      background: #fff
    }
    button.cancel_order,
    input[type="submit"],
    input[type="button"]
    {
  
      border-radius: 5px;
      background-color: #1273EB;
      border: none;
      color: #fff;
      cursor: pointer;
      display: block;
      line-height: 1.6em;
      margin: 10px;
      outline: none;
      padding: .8em 0;
  
    }
    input[type="submit"]:hover {
      background: rgb(42, 92, 207);
  
    }
    input[type="radio"],
    input[type="checkbox"]{
      display: inline-block;
      width: 20px;
    }
    textarea{
      display: block;
      box-sizing: border-box;
      width: 100%;
      min-height:50px;
      min-width: 100%;
      outline: none;
      margin: 0;
    }
  
    label{
      left: 8px;
      top: 12px;
      color: #999;
      font-size: 16px;
      display: inline-block;
      padding: 4px 10px;
      font-weight: 400;
      background-color: rgba(255,255,255,0);
  }
.submitandgo{
  width: 150px;
  float:left;
}
form.order_summary .submitandgo{
  width: 300px;
  font-weight: bold;
  font-size: larger;
}
.floatLabel.rtl,
#website_name,
#website_desc{
  direction: rtl; 
  text-align: right; 
}
.floatLabel.ltr,
#website_url{
  direction: ltr;  
  text-align: left;
}


  .toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background-color: #1273EB;
    color: white;
    font-weight: 600;
    direction: rtl;
  }

  .toolbar img {
    margin: 0 16px;
  }

.header-welcome{
  float:left;
}
.header a{
  color:#fff;
  font-weight: normal;
}
.header a:hover{
  text-decoration: underline;
}
.header-title{
  text-align: center;
  padding-top: 14px;
}
  .footer {
    background-color: #000;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;   /* Height of the footer */
 }
 .copyright{
    text-align: center;
    padding-top: 16px;
 }
 .copyright a, 
 .copyright a:visited, 
  .copyright p{
    color: #FFF;
 }
 .copyright a:hover{
   color: #1273EB;
 }


 .printUserTkTable 
 {
  width: 100%;
  direction: rtl;
  }
 

form.order_summary {
  width: 800px;
  max-width: 800px;
}
 .printUserTkTable div.row{
 
  border: 0px solid #666;
  background-color: #e5e5e5;
  border-radius: 5px;
  padding : 15px;
 

 }
 .printUserTkTable div > div {
/* float:right;*/
 }

 .printUserTkTable div > div.webtk-buttons a, 
 .printUserTkTable div > div.webtk-buttons button {
  float:left;
  direction: ltr;


 }
 .mkt-light{
  font-size:10px;
  font-weight: normal;
  color: rgb(89, 108, 115);
 }

 .printUserTkTable div > div h2 {
  text-align: right;
  margin: 0 0 1px 0;
 }
 button.cancel,
 .printUserTkTable > div.row > div > a > button
 {
  /*
    color: #FFF;
    font-weight: bold;
    padding: 5px;
    margin: 5px;
    background-color: #1273EB;
    border-color: #ccc;
    border-radius: 10px;
    min-width: 75px;
*/

 }
 .printUserTkTable > div.row > table {
  width: 100%;
 }



 .printUserTkTable > div.row > table  td {
  border: 2px solid #FFF;
  padding: 5px;
 }

 .printUserTkTable > div.row > table   td:first-child {
  width: 25%
 }

 .printUserTkTable > div.row > table   td:last-child {
  width: 75%
 }




form.addwebtk,
form.addtktype
{
  width: 500px;
  max-width: 800px;
  min-width: 500px;
}
form.addwebtk fieldset {
  background-color: #FFF;
  color:#125699;
  border: 1px solid grey;
  border-radius: 5px;
  padding: 0 15px;

}
form.addwebtk fieldset legend{
  background-color: #FFF;
  color:#125699;
  border: 0;
  width: 120px;
  margin-right: 15px;

}
form.addtktype div
{
  float:right;
}

form.addtktype div.indent
{
  margin-right: 50px;
}

form.addtkpkg
{
  width: 100%;
  max-width: 100%;
}
form.pkgForm{
  margin: 0;
  background-color: initial;
}
input.pkgForm_submit{

    border-radius: 5px;
    background-color: #1273EB;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
    line-height: 1.6em;
    margin: 1px;
    outline: none;
    padding: 1px;
    min-width: 75%;

}

.alert-danger{
  border-color: #FFF;
  padding: 0px;
}

.price_table{
  direction: rtl;
  /*border : 1px solid #1273EB;*/
  padding: 2px;
  margin: 2px;
}
.price_table th,
.price_table td{
  direction: rtl;
  text-align: right;
  /*border : 1px solid #1273EB;*/
  padding: 10px;
  margin: 5px;
}
.bestdeal{
  font-weight:bold;
  color:#1273EB;
}

fieldset {
  background-color: #eeeeee;
}

legend {
  background-color: gray;
  color: white;
  padding: 5px 10px;
}
fieldset input{
  margin: 5px;
}

.pkg_0{
  background-color: #b8daff;
}
.pkg_1{
  background-color: #bee5eb;
}
.pkg_2{
  background-color: #c3e6cb;
}
.table-hover tbody tr:hover {
  background-color: #f5c6cb;
  font-weight: bold;

}

input#pkgsubmit:disabled{ 
  background-color: #666;
}

.registration{
  margin: 82px auto 32px;
  padding: 16px;
  flex-direction: column;
  align-items: center;

}
.registration.register{
  width: 100%;
}
.register_text{
font-weight: bold;
}
.registration.forgot,
.registration.login{
  display: flex;
  background-color: #c1daf3;
  border-radius:12px;
}
.register_section{
  display: flex;
  background-color: #c1daf3;
  border-radius:12px;
}
.register_section #submit {
  font-size:18px;
  font-weight: bold;
}

.register_section #submit:disabled {
  background-color: #2f4b34;
}
.register_section #submit:hover {
  background-color: rgb(27 177 47);
}

.register_image{
  width: 100px;
}

.register_title{
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  width: 50%;
}

.register_form{
  width: 50%;
}

.register_form form{
  padding:5px;
}
.register_title span.line1,
.register_title span.line2
{
      color : #1273EB;
      font-weight: 700;
}
.register_title span.line1{
    font-size: 34px;
}    
.register_title span.line2{
  font-size: 17px;
}    

p.login_link{
  text-align: center;
}

  
.form_section_edit{
  background: #9f9f9f;
  max-width: 600px;

}
.form_section_edit textarea{
  height: 100px;
}
.edit_button_added_section,
.button_add_section,
.button_delete_custom_section,
.button_hide_orig_section,
.button_unhide_orig_section,
.button_edit_section,
.form_section_edit button{
  margin: 5px;
  padding: 0 10px;
  border-radius: 5px;
  background-color: #1273EB;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 1.6em;
  outline: none;
}
.msg_edit_section{
  margin: 0 5px;
}

.editmode.stroke{
  text-decoration-line: line-through;
}
.editmode.unstroke{
  text-decoration-line: none;
}
.sectionix{
  position: relative;
    left: 250px;
    direction: ltr;
}

.welcome{
  width: 100%;
  background-color: lightgrey;
  margin: 1px; 
  padding: 25px;
  border-radius: 10px;
  border: 1px solid;
  border-color: #1273EB;
  
}
.printUserTkTable button{
  margin: 1px;
  padding: 5px 10px;
}


.tk-proprties{
  border: 0px solid #1273EB;
  margin: 3px;
  padding:3px;
  float: right;
  background-color: #f0efef;
  
}
.tk-proprties .tklabel{
font-weight: lighter;
margin: 3px;

}
.tk-proprties.tkpay{
  width: 100%;
} 

.tk-proprties .tkvalue{
  font-weight: bold;
  margin: 3px;
}
.tk-proprties.fullwidth{
  width: 100%;
  float: none;
}

.editmodeButtons{
  display:none;
  float: left;
  height: 35px;
  margin: 0;
  padding: 0;
  width: 100%;
 
  border-radius: 0px;
  border: 0px solid green;
}
.editmodeButtons button {
 
  float:left;
}
li.editmode{
  margin-top: 2px;
}

li.level2-title>div.editmode{
  display: inline;
  padding: 5px 0 25px 500px;
}
li.level2-title>div.editmode:hover,
li.editmode.base:hover,
li.editmode:hover,
.selected-section,
.selected-section div.editmodeButtons{
  background-color: rgb(250, 222, 197);
}
li.editmode.addafter:hover,
.selected-section.addafter,
.selected-section.addafter div.editmodeButtons
{
  background-color: rgb(169, 238, 169);
}
li.addafter
{
  background-color: rgb(216, 239, 216);
}


li.editmode.override:hover,
.selected-section.override,
.selected-section.override div.editmodeButtons{
  background-color: rgb(139, 220, 252);
}
li.override{
  background-color: rgb(139, 220, 252);
}


li.editmode.tkhide:hover,
.selected-section.tkhide,
.selected-section.tkhide div.editmodeButtons{
  background-color: pink;
}

li.tkhide{
  background-color: rgb(213, 207, 208);
}

button:disabled {
  background: #81858c;
}

img.logo{
  border-radius: 10px;
  width: 140px;
}
div.header a.logo{
  font-size: 18px;
}


.tksection.editmode::after{
  color: red;
  border: 1px solid red;
  font-weight: bold;
  position: absolute;
  left:6%;
  padding: 0 35px 0 15px;
}

.tksection.editmode.override::after{
  content: ' סעיף מקורי מותאם ';
  background-color: rgb(139, 220, 252);
}
.tksection.editmode.addafter::after{
  content: ' סעיף חדש ';
  background-color: rgb(169, 238, 169);
}
.tksection.editmode.tkhide::after{
  content: ' סעיף מוסתר ';
  background-color: rgb(213, 207, 208);
}
.tksection.editmode{
  margin-top: 40px;
}
.level2-title{
  margin-top:25px;
}

.welcome a{
  border: 1px solid grey;
  background-color: #0693e3;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
}
form.order_summary h1{
  text-align:center;
}

#submitandgo_button[disabled] {
  background-color: rgba(128, 128, 128);
  pointer-events: none;
}
#submitandgo_button:hover {
  background-color: #0356bb;
}

.payment_summary,
.payment_summary>p 
{
  text-align: center;
  font-weight: bold;
}