.required label:after {
    color: #e32;
    content: ' *';
    display:inline;
}

#send_request{
    padding: 20px;
}

.form-msg{
    font-size: small;
    font-family: vetica Bold;
}

.form-group.has-error{
    margin-bottom: 0px;
}

.text-danger{
    font-size: small;
}

fieldset.scheduler-border {
    border: 1px groove #7e81813b  !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #7e8181;
            box-shadow:  0px 0px 0px 0px #7e8181;
}

legend.scheduler-border {
    font-size: 1.1em !important;
    width:auto;
    padding:0 10px;
    border-bottom:none;
    color: #7e8181;
    font-family: vetica;
}

label{
    font-weight: normal;
}


/* check box style */

/*
=====
LEVEL 1. CORE STYLES
=====
*/

.toggle{
    --uiToggleSize: var(--toggleSize, 20px);
    --uiToggleIndent: var(--toggleIndent, .4em);
    --uiToggleBorderWidth: var(--toggleBorderWidth, 2px);
    --uiToggleColor: var(--toggleColor, #000);
    --uiToggleDisabledColor: var(--toggleDisabledColor, #868e96);
    --uiToggleBgColor: var(--toggleBgColor, #fff);
    --uiToggleArrowWidth: var(--toggleArrowWidth, 2px);
    --uiToggleArrowColor: var(--toggleArrowColor, #fff);
  
    display: inline-block;
    position: relative;
  }
  
  .toggle__input{
    position: absolute;
    left: -99999px;
  }
  
  .toggle__label{
    display: inline-flex;
    cursor: pointer;
    min-height: var(--uiToggleSize);
    padding-left: calc(var(--uiToggleSize) + var(--uiToggleIndent));
  }
  
  .toggle__label:before, .toggle__label:after{
    content: "";
    box-sizing: border-box;  
    width: 1em;
    height: 1em;
    font-size: var(--uiToggleSize);
  
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .toggle__label:before{
    border: var(--uiToggleBorderWidth) solid var(--uiToggleColor);
    z-index: 2;
  }
  
  .toggle__input:disabled ~ .toggle__label:before{
    border-color: var(--uiToggleDisabledColor);
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:after{
    background-color: var(--uiToggleColor);
    opacity: 0;
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label:after{
    opacity: 1;
  }
  
  .toggle__text{
    margin-top: auto;
    margin-bottom: auto;
  }
  
  /*
  The arrow size and position depends from sizes of square because I needed an arrow correct positioning from the top left corner of the element toggle
  */
  
  .toggle__text:before{
    content: "";
    box-sizing: border-box;
    width: 0;
    height: 0;
    font-size: var(--uiToggleSize);
  
    border-left-width: 0;
    border-bottom-width: 0;
    border-left-style: solid;
    border-bottom-style: solid;
    border-color: var(--uiToggleArrowColor);
  
    position: absolute;
    top: .5428em;
    left: .2em;
    z-index: 3;
  
    transform-origin: left top;
    transform: rotate(-40deg) skew(10deg);
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
    width: .5em;
    height: .25em;
    border-left-width: var(--uiToggleArrowWidth);
    border-bottom-width: var(--uiToggleArrowWidth);
    will-change: width, height;
    transition: width .1s ease-out .2s, height .2s ease-out;
  }
  
  /*
  =====
  LEVEL 2. PRESENTATION STYLES
  =====
  */
  
  /* 
  The demo skin
  */
  
  .toggle__label:before, .toggle__label:after{
    border-radius: 2px;
  }
  
  /* 
  The animation of switching states
  */
  
  .toggle__input:not(:disabled) ~ .toggle__label:before,
  .toggle__input:not(:disabled) ~ .toggle__label:after{
    opacity: 1;
    transform-origin: center center;
    will-change: transform;
    transition: transform .2s ease-out;
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:before{
    transform: rotateY(0deg);
    transition-delay: .2s;
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:after{
    transform: rotateY(90deg);
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label:before{
    transform: rotateY(-90deg);
    transition-delay: 0s;
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label:after{
    transform: rotateY(0deg);
    transition-delay: .2s;
  }
  
  .toggle__text:before{
    opacity: 0;
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
    opacity: 1;
    transition: opacity .1s ease-out .3s, width .1s ease-out .5s, height .2s ease-out .3s;
  }
  
  /*
  =====
  LEVEL 3. SETTINGS
  =====
  */
  
  .toggle{
    --toggleColor: #f37920;
    --toggleBgColor: #faa519;
    --toggleSize: 18px;
  }
  
  /*
  =====
  DEMO
  =====
  */
  
  .page{
    margin: auto;  
    padding-left: 10px;
    padding-right: 10px;
    order: 1;
  }
  
  .page__toggle{
    font-size: 16px;
    font-weight: 700;
    color: #7e8181;
  }
  
  .page__toggle:nth-child(n+2){
    margin-top: 50px;
  }
  
/* end check box style */  

/* radio style */
.styled-input-container{
    display: inline-block;
}
.radio-example-one{
    padding-bottom: 4px;
}
.styled-input-single {
    position: relative;
    padding: 12px 12px 12px 25px;
    text-align: left;
    display: inherit;
  }
  .styled-input-single label {
    cursor: pointer;
  }
  .styled-input-single label:before, .styled-input-single label:after {
    content: '';
    position: absolute;
    top: 50%;
    border-radius: 50%;
  }
  .styled-input-single label:before {
    left: 0;
    width: 20px;
    height: 20px;
    margin: -15px 0 0;
    background: #f7f7f7;
    box-shadow: 0 0 1px grey;
  }
  .styled-input-single label:after {
    left: 5px;
    width: 10px;
    height: 10px;
    margin: -10px 0 0;
    opacity: 0;
    background: #f37920;
    -webkit-transform: translate3d(-40px, 0, 0) scale(0.5);
            transform: translate3d(-40px, 0, 0) scale(0.5);
    transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }
  .styled-input-single input[type="radio"],
  .styled-input-single input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: -9999px;
    visibility: hidden;
  }
  .styled-input-single input[type="radio"]:checked + label:after,
  .styled-input-single input[type="checkbox"]:checked + label:after {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  
  .styled-input--square label:before, .styled-input--square label:after {
    border-radius: 0;
  }
  
  .styled-input--rounded label:before {
    border-radius: 10px;
  }
  .styled-input--rounded label:after {
    border-radius: 6px;
  }
  
  .styled-input--diamond .styled-input-single {
    padding-left: 45px;
  }
  .styled-input--diamond label:before, .styled-input--diamond label:after {
    border-radius: 0;
  }
  .styled-input--diamond label:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .styled-input--diamond input[type="radio"]:checked + label:after,
  .styled-input--diamond input[type="checkbox"]:checked + label:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 1;
  }
  
  @media (min-width: 860px) {
    .two-column {
      display: flex;
    }
  }
  .two-column .single-col {
    margin: 0 0 40px;
  }
  @media (min-width: 860px) {
    .two-column .single-col {
      width: 47.5%;
      float: left;
      margin: 0 0 0 5%;
    }
    .two-column .single-col:nth-child(2n+1) {
      clear: both;
      margin: 0;
    }
  }
  
  .panel-primary>.panel-heading {
    color: #fff;
    background-color: #f37920ed;
    border-color: #eb5424;
}
.panel-primary {
  border-color: #eb5424;
}

.panel-body{
  background-color: #ffd2b20a;
}

.add-btn{
  padding: 0 0px 15px 0;
  direction: rtl;
}

.btn-default:hover,.btn-default.focus, .btn-default:focus {
  color: #f3822f;
  background-color: #fff;
  border-color: #f3822f;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: 5px auto #f3822f;
}
.panel-heading h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
  width: 75%;
  padding-top: 8px;
}

.btn-remove{
  cursor: pointer;
}

/* loader animation */
.imageRotateHorizontal{
  -moz-animation: spinHorizontal .9s infinite linear;
  -o-animation: spinHorizontal .9s infinite linear;    
  -webkit-animation: spinHorizontal .9s infinite linear;
  animation: spinHorizontal .9s infinite linear;
}

@-moz-keyframes spinHorizontal {
  0% {
      -moz-transform: rotateY(0deg);
  }

  100% {
      -moz-transform: rotateY(360deg);
  }
}

@keyframes spinHorizontal {
0% { 
      transform: rotateY(0deg); 
}
  100% {
      transform: rotateY(360deg);
  }
}


@-ms-keyframes spinHorizontal {
0% { 
      -ms-transform: rotateY(0deg); 
}
  100% {
      -ms-transform: rotateY(360deg);
  }
}

@-o-keyframes spinHorizontal {
0% { 
      -o-transform: rotateY(0deg); 
}
100% { 
      -o-transform: rotateY(360deg); 
}
}

@-webkit-keyframes spinHorizontal {
0% { 
      -webkit-transform: rotateY(0deg); 
}
100% { 
      -webkit-transform: rotateY(360deg); 
}
}

.icon-box {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
  position: relative;
  /* left: 180%; */
  background: #fff;
}
.modal-confirm {		
  color: #434e65;
  width: 525px;
}
.modal-confirm .modal-content {
  padding: 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
.modal-confirm .modal-header {
  background: #f3822f;
  border-bottom: none;   
      position: relative;
  text-align: center;
  /* margin: -20px -20px 0; */
  border-radius: 5px 5px 0 0;
  padding: 35px;
}
.modal-confirm h4 {
  text-align: center;
  font-size: 36px;
  margin: 10px 0;
}
.modal-confirm .form-control, .modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px; 
}
.modal-confirm .close {
      position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  text-shadow: none;
  opacity: 0.5;
}
.modal-confirm .close:hover {
  opacity: 0.8;
}
.modal-confirm .icon-box {
  color: #fff;		
  width: 95px;
  height: 95px;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  border: 5px solid #fff;
  padding: 15px;
  text-align: center;
}

.modal-confirm .icon-box i {
  font-size: 64px;
  margin: -4px 0 0 -4px;
}
.modal-confirm.modal-dialog {
  margin-top: 80px;
}
.modal-confirm .btn {
  color: #fff;
  border-radius: 4px;
  background: #434e65;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  border-radius: 30px;
  margin: 10px;
  padding: 6px 20px;
  border: none;
}
.modal-confirm .btn:hover, .modal-confirm .btn:focus {
  background: #434e65;
  outline: none;
}
.modal-confirm .btn span {
  margin: 1px 3px 0;
  float: left;
}
.modal-confirm .btn i {
  margin-left: 1px;
  font-size: 20px;
  float: right;
}
.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

.simple-modal {
  --gutter: 14px;
  --modal-color: #800000;
  --soft-color: #fafafa;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 2%;
}
.simple-modal__content {
  width: 95vw;
  height: 55vh;
  max-height: 700px;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.simple-modal__content header {
  min-height: 60px;
  height: 60px;
  color: #ffffff;
  background-color: var(--modal-color);
  display: grid;
  padding-left: var(--gutter);
  align-items: center;
  grid-template-columns: auto 60px;
}
.simple-modal__content header h4 {
  margin: 0;
  text-align: center;
}
.simple-modal__content header span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 20px;
  opacity: .8;
  cursor: pointer;
}
.simple-modal__content header span:hover {
  opacity: 1;
}
.simple-modal__content .modal-main {
  flex: 1;
  text-align: center;
  overflow: auto;
  padding: var(--gutter);
}
.simple-modal__content footer {
  height: auto;
  text-align: right;
  border-top: solid 1px #cccccc;
  padding: var(--gutter);
  background-color: #ffffff;
  background-color: var(--soft-color);
}
.simple-modal__content footer button, .simple-modal__content footer input {
  margin: 0;
}
.simple-modal__content footer button:not(:last-child), .simple-modal__content footer input:not(:last-child) {
  margin-right: var(--gutter);
}

.card{
  padding: 5rem;
    background-color: #fff;
    margin: 0 auto;
}

.iti__flag {background-image: url("path/to/flags.png");}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("path/to/flags@2x.png");}
}

.iti {
  width:100%;
}