
@font-face {
	font-family: 'SofiaProLight';
	src: url('fonts/sofiaprolight.woff2') format('woff2'), url('fonts/sofiaprolight.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'SofiaProMedium';
	src: url('fonts/sofiapromedium.woff2') format('woff2'), url('fonts/sofiapromedium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'SofiaProBold';
	src: url('fonts/sofiaprobold.woff2') format('woff2'), url('fonts/sofiaprobold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}




select,
input{padding: 5px 10px;
font-size: 14px;
width: 200px;
outline: none;
border: 1px solid #DFE3E9;
}
.table thead th{
    font-size: 0.8rem;
}
.table {
    margin-bottom: 1rem !important;
}
.classWithPad {
    margin: 10px;
    padding: 10px;
}

.pagination {
    margin: 0px !important;
}

.input-lg2 {
    font-family: 'SofiaProMedium';
}

.search-icn {
    background: url(../img/da-search-icon.png) #ffffff no-repeat right;
}

.input-lg2 {
    padding: 15px;
    border-radius: 0;
    font-size: 1.000em;
    color: #222;
    line-height: 24px;
    outline: none;
    display: inline-block;
    width: 100%;
    height: 56px;
    text-align: left;
    box-shadow:none;
    border: 1px solid #DFE3E9;
    margin-bottom: .5em;
}

/** Spinner **/
.spinnerbody{
    background: rgba(0,0,0,.4) !important;
    width: 100%;
    height: 100%;
    border: red;
    position: absolute;
    z-index: 1;
}
.spinner {
    margin: 50px 49% !important;
    height: 28px !important;
    width: 28px !important;
    animation: rotate 0.8s infinite linear;
    border: 8px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    top:35% !important;
    background: rgba(0,0,0,.4);
  }
  
  @keyframes rotate {
    0%    { transform: rotate(0deg); }
    100%  { transform: rotate(360deg); }
  }

.green {
    color: #22c588 !important;
}
.red {
    color: #ff001e !important;
}
.delay-02 {
    animation-delay: 0.2s;
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.spinnerload-container{
    background: rgba(0,0,0,.4);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1020;
}

.spinnerload {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;


    position:absolute; /*it can be fixed too*/
    left:0; right:0;
    top:0; bottom:0;
    margin:auto;

    /*this to solve "the content will not be cut when the window is smaller than the content": */
    max-width:100%;
    max-height:100%;

  }
  
  .spinnerload > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    margin: 2px;
    
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
  }
  
  .spinnerload .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  
  .spinnerload .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  .spinnerload .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  
  .spinnerload .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
  }
  
  @-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
    20% { -webkit-transform: scaleY(1.0) }
  }
  
  @keyframes sk-stretchdelay {
    0%, 40%, 100% { 
      transform: scaleY(0.4);
      -webkit-transform: scaleY(0.4);
    }  20% { 
      transform: scaleY(1.0);
      -webkit-transform: scaleY(1.0);
    }
  }
  