body {
    font-family: Arial;
/*    width: 600px;*/
}

.form-container {
/*    background: #f1ecdf;*/
/*    border: #e2ddd2 1px solid;*/
/*    padding: 20px;*/
    border-radius: 2px;
}

.input-row {
    margin-bottom: 20px;
}

.input-row label {
    color: #75726c;
}

.input-field {
    width: 100%;
    border-radius: 2px;
    padding: 10px;
    border: #e0dfdf 1px solid;
    box-sizing: border-box;
    margin-top: 2px;
}

.input-field-inline {
/*    width: 60%;*/
    border-radius: 2px;
    padding: 1px;
    margin-left: 10px;
    border: #e0dfdf 1px solid;
    box-sizing: border-box;
/*    margin-top: 2px;*/
}

.input-field-inline2 {
    border-radius: 2px;
    padding: 1px;
    border-top-left-radius: 3px!important;
    border-bottom-left-radius: 3px!important;
    padding-left: 9px;
    margin-left: 9px;
    border: #e0dfdf 1px solid;
    box-sizing: border-box;
}



.span-field {
    font: Arial;
    font-size: small;
    text-decoration: none;
}

.btn-submit {
    padding: 10px 60px;
/*    background: #9e9a91;*/
/*    border: #8c8880 1px solid;*/
    color: #ffffff;
    font-size: 0.9em;
    border-radius: 2px;
    cursor: pointer;
}

.btn-submit-inline {
    padding: 14px 20px;
    background: #9e9a91;
    border: #8c8880 1px solid;
    color: #ffffff;
    font-size: 0.9em;
    border-radius: 2px;
    cursor: pointer;
}


.errorMessage {
    background-color: #e66262;
    border: #AA4502 1px solid;
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 3px;
}

.successMessage {
    background-color: #9fd2a1;
    border: #91bf93 1px solid;
    padding: 5px 10px;
    color: #3d503d;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
}

.info {
    font-size: .8em;
    color: #e66262;
    letter-spacing: 2px;
    padding-left: 5px;
}

/*
input, label{
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0;
}*/


/*Seiten Template*/

@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);


body{
    margin: 0;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    text-align: left;
    background-color: #f5f8fa;
}

.navbar-laravel
{
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.navbar-brand , .nav-link, .my-form, .reservation-form
{
    font-family: Raleway, sans-serif;
}

.my-form
{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.my-form .row
{
    margin-left: 0;
    margin-right: 0;
}

.reservation-form
{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.reservation-form .row
{
    margin-left: 0;
    margin-right: 0;
}


/*Bootstrap Navbar*/
@media (max-width: 767px)
  .navbar-nav
    .dropdown-menu
      position: static
      float: none
      width: 100%
      margin-top: 0
      background-color: transparent
      border: 0
      -webkit-box-shadow: none
      box-shadow: none
      &>li
        &>a
          line-height: 20px
          padding: 5px 15px 5px 25px
      .dropdown-header
        padding: 5px 15px 5px 25px
  .navbar-default
    .navbar-nav
      .dropdown-menu
        &>li
          &>a
            color: #777 /* change this default color according to your design */
    
/* Icon Animation Success / Abort */

.animation-ctn{
  text-align:center;
  margin-top:5em;
}

	@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 0px
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
   
    }

    100% {
        stroke-dashoffset: 960px;
      
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px 
    }

    100% {
        stroke-dashoffset: 960px
    }
}

@keyframes colored-circle { 
    0% {
        opacity:0
    }

    100% {
        opacity:100
    }
}

/* other styles */
/* .svg svg {
    display: none
}
 */
.inlinesvg .svg svg {
    display: inline
}

/* .svg img {
    display: none
} */

.icon--order-success svg polyline {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}
.icon--order-success svg circle#colored {
    -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
    animation: colored-circle 0.6s ease-in-out 0.7s backwards;
} 