/*
html {
  font-family: 'Nunito', 'Helvetica', sans-serif
}
*/

.angular-google-map-container {
  height: 400px;
}

#map_canvas {
  margin: 0;
  padding: 0;
  height: 400px;
  border: 1px solid #ccc;
  max-width: none;
}

.pre-scrollable {
  max-height: 1000px;
}


/* start pricing */

#pricing {
  background: #f8f8f8;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

#pricing h2 {
  padding-bottom: 60px;
}

#pricing .pricing {
  background: #fff;
}

#pricing .active {
  position: relative;
  bottom: 20px;
}

#pricing .pricing-business .pricing-title {
  background: #fdb515;
  color: #0a2345;
  font-weight: bold;
  padding: 30px;
}

#pricing .pricing-business .pricing-title p {
  font-size: 20px;
}

#pricing .pricing-business ul {
  padding: 0;
  margin: 0;
}

#pricing .pricing-business ul li {
  display: block;
  list-style: none;
  padding: 16px;
}

#pricing .pricing-business .btn {
  background: transparent;
  border: 1px solid #fdb515;
  border-radius: 0px;
  color: #fdb515;
  font-weight: bold;
  padding-right: 40px;
  padding-left: 40px;
  margin-top: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

#pricing .pricing-business .btn:hover {
  background: #fdb515;
  color: #fff;
}


/* end pricing */

[dnd-list] .selected {
  background-color: #4CAF50;
  color: #fff;
  border: 2px solid #4CAF50;
  border-radius: 5px;
  font-weight: bold;
}

div [dnd-drop] {
  min-width: 100px;
  min-height: 30px;
  border: 1px solid gray;
  background-color: lightgray;
  border-radius: 5px;
}

input [dnd-drop] {
  width: 100%;
  min-height: 30px;
  border: 1px solid gray;
  background-color: lightgray;
  border-radius: 5px;
}

[dnd-list] .dndDragover {
  background-color: #4CAF50;
  border: 2px solid #4CAF50;
}

.drop-box {
  border: 4px dotted gray;
  border-radius: 10px;
  min-height: 50px;
  padding: 20px;
  margin: 20px;
}

form .panel-body {
  padding: 2px;
  margin: 2px;
}

.form-horizontal .panel-body .form-group {
  margin-right: 0;
  margin-left: 0;
}

div .form-group {
  margin-bottom: 5px;
  vertical-align: bottom;
}


.glyphicon.spinning {
  animation: spin 1s infinite linear;
  -webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
  from {
      transform: scale(1) rotate(0deg);
  }
  to {
      transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin2 {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
  }
}