

/*form styles*/
#msform {
    background: #1b2540; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #1b2540, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
    text-align: center;
    position: relative;
    margin: 30px 0;
    padding: 30px;
    border-radius: 10px;
}

#msform fieldset {
    /* background: white; */
    border: 0 none;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); */
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
direction: rtl;
    border-radius: 5px;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;

    color: #2C3E50;
    font-size: 13px;
}
#msform label{
    width: 100%;
    text-align: start;
    color: #fff;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #1b2540;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 130px;
    background: #ffffff;
    font-weight: bold;
    color:#1b2540;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #1b2540;
}

#msform .action-button-previous {
    width: 130px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
   /*  letter-spacing: 2px; */
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: right;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #e0cb9c;
    color: #1b2540;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

.categories{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
}

.category{
    width: fit-content;
    border: 1px solid #1b2540;
    border-radius: 5px;
    margin-right: 10px;
    padding: 1%;
    margin-bottom: 5px;
    cursor: pointer;
}

.category>span{
    white-space: nowrap;
}

.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed #1b2540;
    border-radius: 3px;
    transition: 0.2s;
  }
  .file-drop-area.is-active {
    background-color: #1b2540;
  }

  .fake-btn {
    flex-shrink: 0;
    background-color: #1b2540;
    border: 1px solid #1b2540;
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: #e0cb9c;
  }

  .file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
  }

  .file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
  }
  .file-input:focus {
    outline: none;
  }
  .change_backgound{
    background-color: #1b2540;
      color: #fff;
  }
  .change_color{
    color: #e0cb9c;
  }
  .select_options{
    width: 100%;
    line-height: inherit;
    height: 30px;
    border: 1px solid #cccccc;
    margin-bottom: 5%;

  }
  .lawyer_price{
    padding: 2px !important;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 20px;
    width: 30% !important;
    box-sizing: border-box;

    color: #2C3E50;
    font-size: 13px;
    margin-right: 5%;
    height: 30px;
    text-align: center;

  }
