body{
    background-image: url('../img/pattern.png');
    font-family: 'Montserrat', sans-serif;
    color: #28254c;
}
h1{
    font-size: 2.2rem;
    margin: 35px;
}
.btn{
    background-color: #ff5e65;
}
.btn a{
    color: #fff;
}
h4{
    font-size: 24px;
}
h6{
    font-size: 14px;
}
.divider{
    margin: 1em 0;
}
.row{
    margin-bottom:0 ;
}
.appNav{
    background: #343d45;  /* fallback for old browsers */
    height: 90px;
}

.appNav h1{
    margin-top: -2.7em;
}

.appDiv{
    margin-top: 3em;
}
p{
    color: #7b40c0;
}
.logo{
    padding: 10px 4px;
    width:20%;
    margin-left: 3em;
}
.exitBtn{
    position: absolute;
    top: 25%;
    right: 4%;
}

nav .nav-wrapper i{
    line-height: 1.5;
}

.appVideo, .card-panel{
    background: transparent;  /* fallback for old browsers */
    border: 3px solid #28254c;
}
.fixed_header{
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom:1em ;
}

.fixed_header tbody{
  display: block;
  width: 100%;
  overflow: auto;
  height: 200px;
}

.fixed_header thead tr {
   display: block;
}

.fixed_header thead {
  background: #28254c;
  color:#fff;
}

.fixed_header th, .fixed_header td {
  padding: 5px;
  text-align: center;
  width: 200px;
}
.addForm {
    margin: 10% auto;
}

.reviewContent, .address{
    text-align: left;
}

.select-wrapper, .input-field{
    display: inline-block;
    margin: 1em 1em;
}

.serviceInput{
    width: 40%;
}

.divider{
    margin: 1em 0;
    height: 3px;
    background-color: #ee6e73;
}
.gtyBtn{
    display: inline-block;
}
.input-number{
    width: 35px !important;
    position: absolute;
    top: 75%;
    left: 37%;
    font-size: 30px;
    text-align: center;
}
.card-content{
    text-align: center;
}
.itemList a{
    font-weight: bold;
}
.addBtn{
    left: 40% !important;
}
.minusBtn{
    left: 10% !important;
}
.tabs .tab a{
    color: #28254c;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
appearance: textfield;
}
.page-footer {
    padding-top: 0;
    color: #fff;
    background-color: rgba(52, 62, 70, 1);
    margin-top: 3em;
}
.dropdown-content li > a, .dropdown-content li > span{
    color: #28254c;
}
.select-dropdown.dropdown-content li.selected{
    background-color: #ff5e65 !important;
}

.select-wrapper input.select-dropdown{
    border-bottom:1px solid #28254c;
}
input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea{
    border-bottom:1px solid #fff;
    color:#fff;
}
.bpSection input:not([type]), .bpSection input[type=text]:not(.browser-default), .bpSection input[type=password]:not(.browser-default), .bpSection input[type=email]:not(.browser-default), .bpSection input[type=url]:not(.browser-default), .bpSection input[type=time]:not(.browser-default), .bpSection input[type=date]:not(.browser-default), .bpSection input[type=datetime]:not(.browser-default), .bpSection input[type=datetime-local]:not(.browser-default), .bpSection input[type=tel]:not(.browser-default), .bpSection input[type=number]:not(.browser-default), .bpSection input[type=search]:not(.browser-default), .bpSection textarea.materialize-textarea{
    border-bottom:1px solid #28254c;
    color:#000;
}
.itemResponsive{
    overflow:scroll;
    max-height: 60vh;
}

button {
    position: relative;
  }
  button:before {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    border: 2px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    animation: 0.8s linear infinite rotate;
  }
  button.sending {
    pointer-events: none;
    cursor: not-allowed;
  }
  button.sending:before {
    transition-delay: 0.5s;
    transition-duration: 1s;
    opacity: 1;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
.btnSection{
    margin-top: 1em;
}
.btnSection .card-panel{
    padding: 3em;
}
.roll-in-top {
	-webkit-animation: roll-in-top 0.8s ease-out both;
	        animation: roll-in-top 0.8s ease-out both;
}
@-webkit-keyframes roll-in-top {
    0% {
      -webkit-transform: translateY(-800px) rotate(-540deg);
              transform: translateY(-800px) rotate(-540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
  }
  @keyframes roll-in-top {
    0% {
      -webkit-transform: translateY(-800px) rotate(-540deg);
              transform: translateY(-800px) rotate(-540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
}

.roll-in-bottom {
	-webkit-animation: roll-in-bottom 0.8s ease-out both;
	animation: roll-in-bottom 0.8s ease-out both;
}
@-webkit-keyframes roll-in-bottom {
    0% {
      -webkit-transform: translateY(800px) rotate(540deg);
              transform: translateY(800px) rotate(540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
}
  @keyframes roll-in-bottom {
    0% {
      -webkit-transform: translateY(800px) rotate(540deg);
              transform: translateY(800px) rotate(540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
  }

@media (min-width: 1200px){

    .btnSection .btn{
        margin-top: 1.5em;
    }
    .logo{
        margin-left: 3em;
        width: 20%;
    }
    .pmSection .card-panel, .soSection .card-panel{
        padding: 10px 1em 1px 1em;
    }
    .sBox{
        padding-top:5em !important;
    }
    .spBox{
        padding-top:9em!important;
    }
    .pmSection .select-wrapper, .pmSection .input-field {
        margin: 0.5em 0.5em;
    }
    #soNext, #pmNext, #closeBtn, #pmCloseBtn{
        top: -15px
    }
}
@media (min-width: 769px){
    .appDiv{
        margin-top: 4em;
    }
}
@media (min-width: 1024px) and (max-width: 1200px){
    body{
        overflow: hidden;
    }
    .sBox{
        padding-top: 1.8em !important;
    }
    .spBox{
        padding-top: 6em !important;
    }
    h4{
        font-size: 1.5rem;
    }
    h1{
        font-size: 4vw;
    }
    .appNav{
        height: 80px;
    }
    .logo{
        width: 25%;
    }
    .appNav h1 {
        margin-top: -2.7em;
        font-size: 3vw;
    }
    .btnSection .card-panel {
        padding: 1.5em;
    }
    .select-wrapper, .input-field {
        margin: 0.5em 0.5em;
    }
}
@media (max-width: 1023px) and (min-width: 768px){
    h1{
        font-size: 3.5vw;
    }
    .logo{
        margin-left: 3em;
        width: 30%;
    }
    .sBox{
        padding-top: 1.6em !important;
    }
    .spBox{
        padding-top: 6em !important;
    }
    h4{
        font-size: 1.2rem;
    }
    .appNav{
        height: 70px;
    }
    .appDiv{
        margin-top: 4em;
    }
    .btnSection .card-panel {
        padding: 1.5em;
    }
}

@media (max-width:767px){
    .card-panel form{
        margin-bottom: 15px;
    }
    .btnSection .card-panel {
        padding: 2em;
    }
}
@media (max-width: 765px) and (min-width: 600px){
    h1{
        font-size: 5vw;
    }
    .logo{
        width: 35%;
    }

}

@media (max-width: 599px) and (min-width: 401px) {
    h1{
        font-size: 7vw;
    }
    h4{
        font-size: 1.5em;
    }
    h5{
        font-size: 1.34rem;
    }
    h6{
        font-weight: 700;
    }
    .reviewContent, .address{
        text-align: center;
    }
    .logo{
        width: 50%;
        padding: 5px 4px;
    }
    .exitBtn{
        top:22%;
    }
    .input-number{
        left:39%;
        top: 75%;
        width: 35px !important;
    }
    .card .card-content p {
        margin: -18px;
        padding-top: 10px;
        font-size: 13px;
    }
    .addBtn{
        width: 30.4px !important;
       height: 30.4px !important;
       left: 45% !important;
    }
    .minusBtn{
        width: 30.4px !important;
       height: 30.4px !important;
        left: 10% !important;
    }
    .appNav{
        height: 60px;
    }
    .appDiv{
        margin-top: 3em;
    }

}

@media (max-width: 400px) and (min-width: 300px){

    h1{
        font-size: 7vw;
    }
    h4{
        font-size: 1.5em;
    }
    h5{
        font-size: 1.34rem;
    }
    h6{
        font-weight: 700;
    }
    .reviewContent, .address{
        text-align: center;
    }
    .logo{
        width: 55%;
        margin-left: 1em;
    }
    .appNav{
        height: 60px;
    }
    .exitBtn{
        top:22%;
    }
    .input-number{
        left:39%;
        top: 75%;
        width: 30px !important;
    }

    .card .card-content p {
        margin: -18px;
        padding-top: 10px;
        font-size: 13px;
    }
    .addBtn{
        width: 30.4px !important;
       height: 30.4px !important;
       left: 40% !important;
    }
    .minusBtn{
        width: 30.4px !important;
       height: 30.4px !important;
        left: 8% !important;
    }
    .page-footer{
        margin-top: 10em;
    }
}

@media (max-width:320px){
    h5{
        font-size: 1.14rem;
    }
    #soNext,#pmNext,#closeBtn, #bpNext, #bpCloseBtn,#pmCloseBtn{
        padding: 0 10px;
    }
    .fixed_header thead tr{
        font-size: 12px;
    }

    .addBtn{
        width: 22.4px !important;
       height: 22.4px !important;
       left: 43% !important;
    }
    .minusBtn{
        width: 22.4px !important;
       height: 22.4px !important;
        left: 8% !important;
    }
    .btn-floating.btn-small i {
        line-height: 1px;
    }
    .input-number {
        left: 39%;
        top: 67%;
        width: 20px !important;
    }

}
