@font-face {
    font-family: fnormal;
    src: url(/fonts/RobotoCondensed-Regular.ttf);
}
@font-face {
    font-family: fbold;
    src: url(/fonts/RobotoCondensed-Bold.ttf);
}
@font-face {
    font-family: fitalic;
    src: url(/fonts/RobotoCondensed-Italic.ttf);
}  
@font-face {
    font-family: flight;
    src: url(/fonts/RobotoCondensed-Light.ttf);
} 
@font-face {
    font-family: fhand;
    src: url(/fonts/12421.ttf);
} 
h1, h2, h3, h4, h5, h6{

}
.page-title{
  font-family: fbold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
  font-size: 26pt;
  text-align: center;
  margin: 20px auto 25px;
  position: relative;
}
.page-title:after {
    position: absolute;
    content: '';
    bottom: -16px;
    width: 182px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(to left, transparent, #1e929d, transparent);
}
.form-control{
	border-radius: 0;
}
.block-title{
	text-align: center;
	font-family: fnormal;
	letter-spacing: 2px;
	margin:20px auto;
  text-transform: uppercase;
  position: relative;
  font-size: 26pt;
}
.block-title:after {
    position: absolute;
    content: '';
    bottom: -21px;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background:  #365be4;
}
.block-content{
  font-size: 14pt;
  color: #333;
  font-family: flight;
  padding-bottom: 20px;
  padding-top: 20px;
}
.block-content ul li, .block-content ol li{
  text-indent: 0px!important;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.btn{
    border-radius: 0;
  
}
.btn-danger{
  background: linear-gradient(#b31212, #e83131);
}
.btn.btn-default{
  color: #fff;
  border:1px solid #fff;
  background-color: rgba(0,0,0,0);
  text-transform: uppercase;
  transition: 0.3s;
}
.btn.btn-default:hover{
  background-color: #fff;
  color: #333;
}
  .was-added-to-cart-note{
    position: fixed;
    z-index: 9999;
    right: 0;
    width: 250px;
    top: -100px;
    font-size: 18pt;
    font-family: fbold;
    padding: 15px 5px;
    text-align: center;
    color: #fff;
    background:#1e929d;
    transition: 0.5s;
  }
  .was-added-to-cart-note.was-added-to-cart-note-show{
    top:0;
  }
        .button1{
          font-family: fnormal;
          text-transform: capitalize;
          letter-spacing: 3px;
          font-size: 15pt;
          color: #eee;
          border:1px solid #eee;
          //border-radius: 2em;
          padding: 10px 20px;
          background: #1e929d;
          transition: 0.3s;
        }
        .button1:hover{
          text-decoration: none;
          background: #26c3d1;
          color: #fff;
          box-shadow: 0 0 15px #fff;
        }
          button.button2{
          font-family: flight;
          font-size: 12pt;
          color: #eee;
          border:1px solid #ccc;
          border-radius: 1em;
          padding: 7px 10px;
          background: rgba(0,0,0,0.1);
          transition: 0.3s;
          color: #333;
        }
        button.button2:hover{
          text-decoration: none;
          background: rgba(221,121,35,0.95);
          color: #fff;
          box-shadow: 0 0 15px #fff;
        }

        a.button3{
          font-family: flight;
          font-size: 19pt;
          color: rgba(221,121,35,0.95);
          border:1px solid rgba(221,121,35,0.95);
          border-radius: 2em;
          padding: 5px 10px 8px;
          transition: 0.3s;
        }
        a.button3:hover{
          text-decoration: none;
          background: rgba(221,121,35,0.95);
          color: #fff;
          box-shadow: 0 0 15px #fff;
        }
.slide-down{
  transform: translateY(250px);
  opacity: 0;
  transition: 0.8s;
}
.slide-down.show{
  transform: translateY(0);
  opacity: 1;
}

.slide-right{
  transform: translateX(250px);
  opacity: 0;
  transition: 0.8s;
}
.slide-right.show{
  transform: translateX(0);
  opacity: 1;
}
.slide-left{
  transform: translateX(-250px);
  opacity: 0;
  transition: 0.8s;
}
.slide-left.show{
  transform: translateX(0);
  opacity: 1;
}

.float-show{
  transform: scale(0.3);
  opacity: 0;
  transition: 0.8s;
}
.float-show.show{
  transform: scale(1);
  opacity: 1;
  top:0;
}
.btn-primary{
  background-color: #445490;
  border-color: #445490;
  transition: 0.3s;
}
.btn-primary:hover{
  background-color: #365be4;
  border-color: #26c3d1;

}
@media screen and (max-width: 550px){
  .was-added-to-cart-note{
    width: 100%;
  }
  .block-title{
    font-size: 16pt;
  }
}


