@import url(https://fonts.googleapis.com/earlyaccess/opensanshebrew.css);

#page-wrapper {
	background-color: #fff;
	  background-position: center;
	  background-size: cover;
	  -webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;	
}

.btn {
	border-radius: 2rem !important;
}

.navbar-brand {
    padding: 10px 10px !important;
}

a {
    color: #3c4052 !important;
}

.panel {
	background-color: #fff !important;
	border-radius: 0 !important;
}

.panel-default {
	border: none !important;
	border-radius: 0px !important;
	box-shadow: 0px 4px 10px 0px rgba(0,0,0,.07);
}

.panel-default>.panel-heading {
	font-size: 18px;
	font-weight: 500;
	background-color: #fff;
}

.page-header {
    color: #e6ad2c !important;
	font-weight: 600;
}

.form-control {
	font-size: 16px;
	background-color: #fff !important;
	border-right: none !important;
	border-left: none !important;	
	border-top: none !important;
	border-bottom: 2px solid #e8e8e8 !important;
	border-radius: 0px !important;
	font-weight: 700 !important;
	height: 34px !important;
	color: #3b3f51 !important;
	-moz-appearance: none !important;
    -webkit-appearance: none !important;
    -ms-appearance: none !important;
	-webkit-box-shadow: none !important;
    box-shadow: none !important;	
	outline: none !important;	
}

.select-wrapper {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 16px;
	font-weight: 700 !important;
    line-height: 1.42857143;
	color: #3b3f51 !important;
	background-color: #fff !important;
    background-image: none;
	border-right: none !important;
	border-left: none !important;	
	border-top: none !important;	
	border-bottom: 2px solid #e8e8e8 !important;
    border-radius: 0px;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
	-webkit-box-shadow: none;
    box-shadow: none;	
	outline: none;
	background-image: url(../img/dropdown.png); 
	background-size: contain; 
	background-repeat: no-repeat;	
}	

.form-control:active, .select-wrapper:active {
	border-bottom: 2px solid #ed7777 !important;
}

.form-control:focus, .select-wrapper:focus {
	border-bottom: 2px solid #ed7777 !important;
}

.form-control:visited, .select-wrapper:visited {
	border-bottom: 2px solid #ed7777 !important;
}

.btn-default, .btn-default:hover, .btn-default:active, .btn-default:focus {
    color: #fff !important;
    background-color: #ed7777 !important;
    border-color: #ed7777 !important;
	outline: 0 !important;
}

.btn-limigray, .btn-limigray:hover, .btn-limigray:active, .btn-limigray:focus {
    color: #eaeaea !important;
    background-color: #eaeaea !important;
    border-color: #eaeaea !important;
	outline: 0 !important;
}

.navbar-default .navbar-toggle {
    border: 0 !important;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ed7777 !important;
}

.navbar-toggle:hover {
    background: transparent !important;
}

.panel-primary {
    border-color: #337ab7;
    border: solid 2px rgba(181, 181, 181, 0.25) !important;
    border-radius: 5px !important;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    color: #fff !important;
}

.login-panel {
    margin-top: 0;
}

.checkbox label, .radio label {
    padding-right: 20px;
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    margin-right: -20px;
}

@media (min-width: 992px) {
.col-md-offset-4 {
    margin-right: 25% !important; }
}	

@media (min-width: 1200px) {
.col-md-offset-4 {
    margin-right: 33.33333333% !important; }
}

.alert:empty {
   display: none !important;
}

.cbx {
  position: relative;
  top: 1px;
  width: 17px;
  height: 17px;
  border: 1px solid #c8ccd4;
  border-radius: 3px;
  vertical-align: middle;
  transition: background 0.1s ease;
  cursor: pointer;
}
.cbx:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 11px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}
.lbl {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}
#cbx:checked ~ .cbx {
  border-color: transparent;
  background: #3b3f51;
  animation: jelly 0.6s ease;
}
#cbx:checked ~ .cbx:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

@-moz-keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@-o-keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}


.alert {
    border-radius: 0px;
	font-weight: 500;
}

.alert-danger {
    background: #f33155;
    color: #ffffff;
    border-color: #f33155;
}

.alert-danger>a {
    color: #ffffff !important;
	font-weight: 600 !important;
	text-decoration: underline;
}

.alert-success {
    background: #7ace4c;
    color: #ffffff;
    border-color: #7ace4c;
}

.alert-success>a {
    color: #ffffff !important;
	font-weight: 600 !important;
	text-decoration: underline;
}

.alert-info {
    background: #41b3f9;
    color: #ffffff;
    border-color: #41b3f9;
}

.alert-info>a {
    color: #ffffff !important;
	font-weight: 600 !important;
	text-decoration: underline;
}

.alert-warning {
    background: #ffbb44;
    color: #333333;
    border-color: #ffbb44;
}

.alert-warning>a {
    color: #333333 !important;
	font-weight: 600 !important;
	text-decoration: underline;
}

.empty-line {
	width: 80%;
    background-color: #eaeaea !important;
	padding: 6px 12px;
	display: inline-block;
}

