@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
.login-page {
  margin: auto;
}
.login-page .form .login {
  margin-bottom: 26px;
}
.login-header h1{
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 360px;
  margin: 1rem;
  padding: 5rem;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border-radius: 5rem;
}
.form input {
  outline: 0;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #bdbdbd;
  margin: 0 0 15px;
  box-sizing: border-box;
  font-size: 1rem;
  height: 3rem !important;
}

.form .input-login{
  background: #ffffff00 !important;
  border-radius: 0;
  text-align: center;
  font-family: "Lato", serif !important
}
.input-login::placeholder {
  font-family: "Lato", serif !important;
  /* font-size: 1.5rem; */
}

.form .input-login:-webkit-autofill{
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important
}

.form .input-login:focus-visible{
  border: none !important;
  border-bottom: 2px solid #ce2323 !important;
}
.form button {
  text-transform: uppercase;
  outline: 0;
  background-color: #328f8a;
  background-image: linear-gradient(45deg, #328f8a, #08ac4b);
  width: 100%;
  border: 0;
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}

.form a:hover{
  color: #ce2323;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}

.form .message a {
  color: #4caf50;
  text-decoration: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}

.logout button {
  color: white;
  font-weight: lighter;
  font-size: 1.1em;
  font-family: Segoe UI !important;
  padding: 0px;
}

.form .actions input{
  margin-top: 1.5rem;
  font-size: 1.1rem;
  height: 2.5rem !important;
  font-weight: 600;
  font-family: "Lato", serif !important
}
.login-page input:focus-visible{
  box-shadow: none !important;
}
@media (max-width: 576px)
{
  body{
    height: auto !important;
    min-height: 100vh;
    font-family: "Work Sans",sans-serif !important;
  }
  main{
    padding: 0 !important;
  }
  .main{
    padding: 0 !important;
  }
  .header{
    height: 3rem !important;
    padding: .5rem 1.5rem !important;
  }
  .header-title{
    font-size: 1.2rem !important;
  }
  .cbmpe-logo{
    max-width: 2.5rem !important;
  }
  .links{
    display: none !important;
  }

  .btn-cancel{
    margin-bottom: 0 !important;
  }
  /* ////////// MENU HAMBÚRGUER ////////// */

  #menu__toggle {
    opacity: 0;
    z-index: 100;
    width: 1.625rem;
    margin: 0px;
    height: 1.625rem;
    position: absolute;
    cursor: pointer !important;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
    background-color: rgba(0, 0, 0, 0.54);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
    background-color: rgba(0, 0, 0, 0.54);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
    background-color: rgba(0, 0, 0, 0.54);
  }
  #menu__toggle:checked ~ .menu-container {
    left: 0 !important;
  }
  .menu__btn {
    position: relative;
    /* top: 1.25rem;
    left: 1.25rem; */
    width: 1.625rem;
    height: 1.625rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 1.625rem;
    height: 0.125rem;
    z-index: 3;
    background-color: #ffffff;
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -0.5rem;
  }
  .menu__btn > span::after {
    content: '';
    top: 0.5rem;
  }
  .menu-container {
    position: fixed;
    top: 0;
    left: 200%;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow-y: scroll;
    background-color: #fff;
    box-shadow: -1.7rem -6rem 0.375rem 2rem rgba(0, 0, 0, 0.4);
    transform: translateX(0%);
    transition-duration: .25s;
    z-index: 2;
  }
  .menu-container-header{
    position: fixed; 
    top: 0; 
    left: -1000; 
    width: 100%;
    height: 3.5rem; 
    background-color: #fff; 
    transition-duration: .25s;
    z-index: 3;
    border-bottom: 1px solid gray;
  }
  .menu-container-content{
    position: fixed;
    top: 3.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: -webkit-fill-available;
    height: -moz-available;
  }
  .menu-links{
    margin: 0;
    padding: 0;
  }
  .menu-links:first-child{
    border-bottom: 1px solid gray;
  }
  .menu-link:first-child button{
    padding-top: 2rem;
  }
  .menu-link:last-child button{
    padding-bottom: 2rem;
  }
  .menu-link:hover {
    background-color: #ffffff;
  }
  .menu-link a{
    width: 100%;
  }
  .menu-link button{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    flex-direction: row;
    border-radius: 1rem;
    padding: 1rem 2rem;
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    transition-duration: .25s;
  }
  .menu-link form:active{
    background-color: rgb(255, 234, 234) !important;
  }
  .menu-link i{
    width: 2.5rem;
  }
  .btn-sign-out{
    /* padding-top: 1rem; */
    border-top: 1px solid gray;
    border-radius: 0 !important;
    padding-left: 2.1rem !important;
  }
  .copyright{
    position: fixed;
    bottom: 0;
    font-size: .8rem;
    text-align: center;
    height: 3rem;
    width: 100%;
    display: flex;
    color: #333;
    align-items: center;
    justify-content: center;
  }
  #user-mobile{
    height: 100%;
    color: black;
    display: flex;
    align-items: center;
    padding-left: 2.9rem;
  }
  #close_menu{
    height: 12rem; 
    width: 100%;
    height: -webkit-fill-available;
    height: -moz-available;
  }

  /* ////////// SEARCH FORM ////////// */
  .forms{
    flex-direction: column !important;
    align-items: center !important;
  }
  .military-container,
  .vaccine-container,
  .date-container,
  .ss-main{ 
    width: 100% !important;
  }
  .forms-container{
    padding: 15px 1.5rem 30px 1.5rem !important; 
    border-radius: 0 0 7px 7px !important;
    margin-block: 0 !important;
  }
  input::placeholder,
  select::placeholder,
  textarea::placeholder{
    font-family: Segoe UI !important;
    font-style: normal !important;
    font-weight: lighter !important;
    color: #666666 !important;
    padding-left: .1rem;
    font-size: 0.9rem;
  }

  /* ////////// VACCINATIONS TABLE ////////// */
  .vaccinations-card-mobile{
    max-height: none !important;
    margin: 0 1.5rem;
  }

  .forms-container input::placeholder {
    font-family: "Lato", sans-serif !important;
    color: #665 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  /* ////////// VACCINATIONS TABLE ////////// */
  .main .vaccinations{
    max-height: none;
    box-shadow: none;
    padding-right: 0px;
    margin-top: 0px !important;
  }
  .vaccines-table,
  .resource-table-type-one,
  .vaccine_brands-table,
  .applicators-table{
    box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
  }
  .display-date-range{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
  }
  .pagination-container{
    width: 100% !important;
  }
  .vaccinations-table td span,
  .vaccinations-table td{
    font-size: .8rem!important;
  }
  .vaccinations-table th:first-child{
    width: 30%;
  }
  .vaccinations-table th{
    border-radius: 0px !important;
  }
  .td-details-mobile{
    text-align: left !important;
    white-space: inherit;
  }
  .td-details-mobile i{
    margin-left: 1rem;
  }
  .vaccination-details,
  .subtable-details-type-one,
  .applicator-details{
    margin: 0.5rem 0;
    border: 0.15rem solid rgba(154,1,0);
    padding: 0.5rem;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
    text-transform: capitalize;
  }
  details {
    position: relative;
  }
  details>summary {
  
    list-style: none;
  }
  summary::-webkit-details-marker{
    display: none!important;
  }
  .caret{
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
    color: rgba(154, 1, 0, 100%) 
  }
  details i.fa-caret-up{
    display: none;
  }
  details[open] i.fa-caret-up{
    display: block;
  }
  details[open] i.fa-caret-down{
    display: none;
  }
  .vaccination-details span:nth-child(even),
  .subtable-details-type-one span:nth-child(even),
  .applicator-details span:nth-child(even){
    margin:0 0 0.4rem 0
  }
  .vaccination-details span:nth-child(odd),
  .subtable-details-type-one span:nth-child(odd),
  .applicator-details span:nth-child(odd){
    font-weight: bold;
  }
  tr:nth-child(odd) .vaccination-details,
  tr:nth-child(odd) .subtable-details-type-one,
  tr:nth-child(odd) .applicator-details{
    background-color: #fff;
  }
  tr:nth-child(even) .vaccination-details,
  tr:nth-child(even) .subtable-details-type-one,
  tr:nth-child(even) .applicator-details{
    background-color: rgb(250, 242, 242)!important;
  }
  td{
    padding: 0.5rem 0.3rem !important;
  }
  .vaccination-details span,
  .subtable-details-type-one span,
  .applicator-details{
    margin: 0.5rem 0rem;
  }
  .vaccination-actions,
  .campaign-actions,
  .applicator-actions{
    display: flex;
    border-top: 1px solid #333;
    padding: 0.5rem 0 0 0;
    justify-content: space-around !important;
  }
  .vaccination-actions i,
  .campaign-actions i,
  .applicator-actions i{
    font-size: 1.5rem !important;
    color: rgba(154, 1, 0, 100%) !important;
  }
  .vaccination-actions button{
    margin: 0px 0.5rem;
  }
  .results{
    width: 100% !important;
  }

  .vaccination-actions button span{
    font-size: 1.4rem !important;
    font-weight: normal !important;
  }

  /* ////////// NEW RESOURCE SCREEN //////////*/ 
  .new-edit-screen-type-one,
  .new-edit-vaccine-screen,
  .new-edit-campaign-screen,
  .new-edit-applicator-screen{
    max-width: none !important;
    width: calc(100% - 3rem) !important;
    margin: 1rem auto !important;
    box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
    border-radius: 1rem !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .new-edit-screen-type-one h1,
  .new-edit-vaccine-screen h1,
  .new-edit-campaign-screen h1,
  .new-edit-applicator-screen h1{
    font-size: 1.2rem;
    padding-left: 3rem !important;
    background-color: rgba(154, 1, 0, 100%);
    padding: .6rem;
    color: white;
    margin: 0 !important;
  }
  .container-type-one,
  .form-vaccine-container,
  .campaign-container,
  .applicator-container,
  .form-vaccine_brand-container{
    margin: 0 !important;
    width: 100% !important;
    padding: 2rem 0 1rem 0 !important;
    border-radius: 0 !important;
  }


  /* ////////// INDEX RESOURCE SCREEN //////////*/ 
  table.vaccinations-table {
    border-radius: 0px;
  }

  table.vaccinations-table td:first-child{
    width: 40%;
    font-size: .8rem;
  }
  table.vaccinations-table td:not(:first-child){
    width: 60%;
  }
  .vaccines-container h1,
  .campaigns-container > h1,
  .vaccine_brands-container h1,
  .applicators-container h1{
    margin-left: 1.5rem !important;
  }
  .btn-new-container,
  .resource-search-form{
    width: calc(100% - 3rem) !important;
    margin: 0 auto 1rem auto !important;
    padding-inline: 0 !important;
  }
  .input-text-search-container,
  .input-text-search-container input{
    width: 100%;
  }
  .vaccine-actions,
  .vaccine_brand-actions{
    display: flex;
    justify-content: space-around;
  }
  .vaccine-actions i,
  .vaccine_brand-actions i{
    font-size: 1.5rem !important;
    color: rgba(154, 1, 0, 100%) !important;
  }
  .vaccines-table tr th:first-child,
  .vaccine_brands-table tr th:first-child{
    width: 70%;
  }
  .resource-table-type-one th,
  .applicators-table th{
    width: 50%;
    border-radius: 7px 7px 0 0 !important;
  }
  .resource-table-type-one summary,
  .applicators-table summary{
    display: flex;
    justify-content: space-between;
  }
  .vaccines-table,
  .resource-table-type-one,
  .vaccine_brands-table,
  .applicators-table{
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  /*   text-transform: uppercase */
  }
  .vaccines-table tr:last-child td:first-child,
  .resource-table-type-one tr:last-child td:first-child,
  .vaccine_brands-table tr:last-child td:first-child,
  .applicators-table tr:last-child td:first-child{
    border-radius: 0 0 0 7px;
  }
  .vaccines-table tr:last-child td:last-child,
  .vaccine_brands-table tr:last-child td:last-child{
    border-radius: 0 0 7px 0;
  }
  .resource-table-type-one tr:last-child td:last-child,
  .applicators-table tr:last-child td:last-child{
    border-radius: 0 0 7px 7px;
  }
  #user_email,
  #user_role{
    width: -webkit-fill-available;
    width: -moz-available;
  }
  th span{
    font-size: 1.2rem;
    font-weight: lighter;
  }
  .edit_user{
    width: inherit !important;
  }
  .title-adm-panel{
    margin-left: 1.5rem;
  }
  .records-found-title{
    margin: 0.5rem 0 0.5rem 1.5rem
  }
  .actions-index-container {
    flex-direction: column;
  }


  /* ////////// VACCINATION CARD SCREEN //////////*/
  .vaccination-card-search-form{
    width: auto !important;
    margin: 1.5rem !important;
  }
  .resource-search-form input[type='text'],
  .input-text-search-container{
    width: 100%;
    /* height: inherit !important; */
  }
  .resource-search-form input[type='text']::placeholder{
    font-family: "Lato", sans-serif !important;
    color: rgb(138, 138, 134) !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }
  .main .results{
    width: 100%;
  }
  .results p{
    margin-top: 0px;
  }

  .vaccination-actions .material-symbols-outlined,
  .campaign-actions .material-symbols-outlined,
  .applicator-actions .material-symbols-outlined,
  .vaccine-actions .material-symbols-outlined,
  .vaccine_brand-actions .material-symbols-outlined{
    color: rgba(154, 1, 0, 100%) !important;
    font-weight: normal !important;
  }
  /* LOGIN */
  .login-page{
    margin: 0 !important;
    height: 100vh;
  }
  .vaccination-card-search-form input[type = "text"]{
    width: -webkit-fill-available;
    width: -moz-available;
  }
  .hidden-th-mobile{
    display: none;
  }
  .vaccinations-card-mobile{
    background-color: white;
    border-radius: 30px;
    padding: 0 !important;
    overflow:hidden;
    box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
  }
  .vaccinations-card-mobile button{
    color: rgba(154, 1, 0, 100%)
  }
  .vaccinations-card-mobile-table thead th:first-child{
    border-radius: 30px 0 0 0;
  }
  .vaccinations-card-mobile-table thead th:last-child{
    border-radius: 0 30px 0 0;
  }
  .military-data{
    color: #524F5D;
    background-color: #fff;
    padding: 0.8rem;
    margin-bottom: 1rem
  }
  .military-data h3{
    margin-top: .7rem;
    margin-bottom: .4rem;
  }
  .military-data h4{
    margin-top: .3rem;
    margin-bottom: .3rem;
    font-weight: normal !important;
  }
  .not-found{
    margin-left: 1.5rem;
  }
  .home-card-container{
    display: flex !important;
    align-items: center;
    flex-direction: column !important;
  }
  .card-item{
      width: 85%;
      height: 8rem;
  }
  .card-item i{
    font-size: 2rem !important;
  }
  .card-item h1{
    margin: 0;
    font-size: 1.4rem !important;
  }
  .card-item button{
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
  .home-welcome{
    margin-bottom: 0;
    text-align: center;
  }
}
.ss-main {
    position: relative;
    /* display: inline-block; */
    user-select: none;
    color: #a9a9a9;
    width: 15rem;
    margin-top: 3px;
    margin-bottom: 0px !important;
    height: 100%;
    font-family: "Lato", serif !important;
  }
  .ss-main .ss-single-selected {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    width: 100%;
    height: 40px;
    padding: .5rem;
    border: 1px solid #dcdee2;
    border-radius: 8px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color 0.2s;
  }
  .ss-main .ss-single-selected.ss-disabled {
    background-color: #dcdee2;
    cursor: not-allowed;
  }
  .ss-main .ss-single-selected.ss-open-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ss-main .ss-single-selected.ss-open-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
  .ss-main .ss-single-selected .placeholder {
    flex: 1 1 100%;
    text-align: left;
    width: calc(100% - 30px);
    line-height: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .ss-main .ss-single-selected .placeholder,
  .ss-main .ss-single-selected .placeholder * {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    padding-left: 3px;
  }
  .ss-main .ss-single-selected .placeholder * {
    width: auto;
  }
  .ss-main .ss-single-selected .placeholder .ss-disabled {
    color: #dedede;
  }
  .ss-main .ss-single-selected .ss-deselect {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin: 0 6px;
    font-weight: 700;
  }
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    display: none;
  }
  .ss-main .ss-single-selected .ss-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin: 0 6px;
  }
  .ss-main .ss-single-selected .ss-arrow span {
    border: solid #a9a9a9;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.2s, margin 0.2s;
  }
  .ss-main .ss-single-selected .ss-arrow span.arrow-up {
    transform: rotate(-135deg);
    margin: 3px 0 0;
  }
  .ss-main .ss-single-selected .ss-arrow span.arrow-down {
    transform: rotate(45deg);
    margin: -3px 0 0;
  }
  .ss-main .ss-multi-selected {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    min-height: 30px;
    width: 100%;
    padding: 0 0 0 3px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color 0.2s;
  }
  .ss-main .ss-multi-selected.ss-disabled {
    background-color: #dcdee2;
    cursor: not-allowed;
  }
  .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
    color: #a9a9a9;
  }
  .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
    cursor: not-allowed;
  }
  .ss-main .ss-multi-selected.ss-open-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ss-main .ss-multi-selected.ss-open-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .ss-main .ss-multi-selected .ss-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1 1 100%;
    width: calc(100% - 30px);
  }
  .ss-main .ss-multi-selected .ss-values .ss-disabled {
    display: flex;
    padding: 4px 5px;
    margin: 2px 0;
    line-height: 1em;
    align-items: center;
    width: 100%;
    color: #dedede;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scaleOut {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    to {
      transform: scale(0);
      opacity: 0;
    }
  }
  .ss-main .ss-multi-selected .ss-values .ss-value {
    display: flex;
    user-select: none;
    align-items: center;
    font-size: 12px;
    padding: 3px 5px;
    margin: 3px 5px 3px 0;
    color: #fff;
    background-color: #5897fb;
    border-radius: 4px;
    animation-name: scaleIn;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
  }
  .ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
    animation-name: scaleOut;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
  }
  .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
    margin: 0 0 0 5px;
    cursor: pointer;
  }
  .ss-main .ss-multi-selected .ss-add {
    display: flex;
    flex: 0 1 3px;
    margin: 9px 12px 0 5px;
  }
  .ss-main .ss-multi-selected .ss-add .ss-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a9a9a9;
    position: relative;
    height: 10px;
    width: 2px;
    transition: transform 0.2s;
  }
  .ss-main .ss-multi-selected .ss-add .ss-plus:after {
    background: #a9a9a9;
    content: "";
    position: absolute;
    height: 2px;
    width: 10px;
    left: -4px;
    top: 4px;
  }
  .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
    transform: rotate(45deg);
  }
  .ss-content {
    position: absolute;
    width: 100%;
    margin: -1px 0 0;
    box-sizing: border-box;
    border: 1px solid #dcdee2;
    z-index: 1010;
    background-color: #fff;
    transform-origin: center top;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
    transform: scaleY(0);
  }
  .ss-content.ss-open {
    display: block;
    opacity: 1;
    transform: scaleY(1);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 0 0 8px 8px;
    /* border: 2px solid rgb(206, 35, 35); */
    /* margin-top: .05rem; */
  }
  .ss-content .ss-search {
    display: flex;
    flex-direction: row;
  }
  .ss-content .ss-search.ss-hide,
  .ss-content .ss-search.ss-hide input {
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
  }
  .vaccine-container .ss-content .ss-search input:focus-visible,
  .vaccine-container .ss-content .ss-search input:focus-visible {
    border: none !important;
  }
  .ss-content .ss-search input {
    display: inline-flex;
    font-size: inherit;
    line-height: inherit;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 30px;
    padding: 6px 8px;
    margin: 0;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    text-align: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: textfield;
    border: none !important;
    background-color: #bfc2d12b !important;
    margin: .5rem;
  }
  .ss-content .ss-search input::placeholder {
    color: #8a8a8a;
    vertical-align: middle;
  }
  .ss-content .ss-search .ss-addable {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    flex: 0 0 30px;
    height: 30px;
    margin: 0 0 0 8px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .ss-content .ss-addable {
    padding-top: 0;
  }
  .ss-content .ss-list {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left;
  }
  .ss-content .ss-list .ss-optgroup .ss-optgroup-label {
    padding: 6px 10px;
    font-weight: 700;
  }
  .ss-content .ss-list .ss-optgroup .ss-option {
    padding: 6px 6px 6px 25px;
  }
  .ss-content .ss-list .ss-optgroup-label-selectable {
    cursor: pointer;
  }
  .ss-content .ss-list .ss-optgroup-label-selectable:hover {
    color: #fff;
    background-color: #f58b90;
  }
  .ss-content .ss-list .ss-option {
    padding: 6px 10px;
    cursor: pointer;
    user-select: none;
  }
  .ss-content .ss-list .ss-option * {
    display: inline-block;
  }
  .ss-content .ss-list .ss-option.ss-highlighted,
  .ss-content .ss-list .ss-option:hover {
    color: #fff;
    background-color: #f58b90;
  }
  .ss-content .ss-list .ss-option.ss-disabled {
    cursor: not-allowed;
    color: #dedede;
    background-color: #fff;
  }
  .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
    color: #a9a9a9;
    background-color: rgba(88, 151, 251, 0.1);
  }
  .ss-content .ss-list .ss-option.ss-hide {
    display: none;
  }
  .ss-content .ss-list .ss-option .ss-search-highlight {
    background-color: #fffb8c;
  }
  
/* Nova Vacinação */

.vaccination-container .ss-main {
  display: block !important;
}
.new-edit-vaccination-screen .ss-content {
  margin-top: -10px;
}
.new-edit-vaccination-screen .ss-main .ss-single-selected.ss-open-below {
  margin-bottom: 10px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

 /* @font-face {
  font-family: 'Open Sans';
  src: url(/OpenSans-Regular.ttf) format('truetype');
}  */
require font-awesome

html{
  height: 100%;
  background-color: #ececec;
}

body {
  min-height: 100vh;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  margin: 0px !important;
  padding: 0px !important;
  font-family: "Lato", serif !important;
  font-weight: 400;
  font-style: normal;
  color: #524F5D !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll; 
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

.main {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem !important;
  max-width: 80rem;
  width: 100%;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden
}

div.main{
  padding-inline: 0px;
}

body main{
  padding-top: 20px;
}

.vaccination_card {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.75rem;
  background-color: hsl(0 0% 100%);
  border-radius: 0.375rem;
  box-shadow: 1px 3px 6px hsl(0 0% 0% / 0.1);
  margin-bottom: 1rem;
}

h1{
  font-weight: normal;
}

label {
  margin-bottom: 3px;
  text-transform: none !important;
  font-size: 1em !important;
  color: #524F5D !important;
  font-family:  'Lato', serif;
}
.notice{
  color: rgb(0, 85, 7);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 0.25rem;
  animation: alert-box 4s forwards;
  background-color: rgb(155, 249, 193);
  height: 2.5rem;
  border: 1px solid #45a04c;
  right: 0;
}
@keyframes alert-box {
  0% {
     opacity: 0;
     
  }
 20% {
   opacity: 1;
   right: 10px
  }
  
  80% {
    opacity: 1
  }
  100%{
    opacity: 0;
    right: 10px
  }
 }

/* /// HEADER /// */

header{
  background: linear-gradient(90deg,#a40100,#7e0100);
}

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  margin: auto;
  padding: 5px 1rem;
  color: white !important;
  max-width: 80rem;
}

.links{
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0px;
  letter-spacing: 0.02em !important;
}

#user{
  background-color: #e0e0e0;
  color: rgba(36, 36, 36, 0.87) !important;
  border-radius: 50px;
  padding: 2px 10px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.fa-user-circle-o{
  margin-right: 4px; 
  color: rgba(36, 36, 36, 0.87) 
}
nav ul ul {
  display: none;
}
nav ul li:hover > ul {
  display: block;
}
nav {
  text-align: center;
}
nav ul {
	padding: 0 20px;
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table;
}
nav ul:after {
  content: ""; 
  clear: both; 
  display: block;
}

nav ul li {
  float: left;
}
		
nav ul li a {
  display: block; 
  padding: 15px 20px;
  text-decoration: none;
}

nav ul ul {
  position: absolute; 
  /* top: 100%;
  width: 100%; */
  /* right: 0%; */
}
nav ul ul li {
  float: none; 
  /* background-color: #e0e0e0; */
  border: 1px solid #fff;
  border-top: none;
  position: relative;
  width: 6rem;
  height: 2.7rem;
  padding: 5px 2px 3px 2px;
}
nav ul ul li:last-child{
  border-radius: 0px 0px 10px 10px
}

nav ul li ul {
  padding: 0px;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-available;
}
nav ul li ul li{
  width: auto;
}

.user-menu-btn{
  color: rgba(36, 36, 36, 0.87) !important;
  font-size: 1.1rem;
  padding: 0px 2px;
  margin: 0px;
  height: 100%;
}
.user-menu-btn form {
  width: 100%;
  height: 100%;
}
.user-menu-btn form:hover{
  background-color: #d0d0d0;
}

#logout form:hover{
  border-radius: 0px 0px 10px 10px;
}
.user-menu-btn :hover i{
  color: rgba(154, 1, 0, 100%) !important
}

.user-menu-btn form button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  flex-direction: row;
}
.user-menu-btn form button div{
  width: 100%;
  font-family: "Lato", serif;
}
.fa-sign-out{
  color: rgba(0, 0, 0, 0.87) !important
}
nav ul ul li a {
  padding: 15px 20px;
  color: #fff;
}	
nav ul ul li a:hover {
  background-color: #b9b9b9;
}

.name-system{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cbmpe-logo{
  max-width: 45px;
  display: flex;
}

.header-title{
  font-family: "Lato", serif;
  font-weight: bold;
  font-size: 1.7em;
  margin: 0px 0px 0px 0.35em;
  letter-spacing: -0.9px;
}

.header-title a{
color: white !important;
}

.header .links span.logout {
  padding: 3px 0px 0px !important;
}

button.user-menu-chip{
  background-color: #fff;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  padding: 1px;
}

button.user-menu-chip span{
  color: #5a0000 !important;
  padding: 0;
  font-size: 1.5rem;
  margin-right: -1px;
}

.user-menu button.menu-list-item{
  display: flex;
  gap: 25px !important;
  align-items: center;
  justify-content: flex-start;
  /* width: 15rem; */
}
.header .dropdown-menu li:nth-of-type(1) .user-menu button.menu-list-item{
  border-radius: 10px 10px 0px 0px;
}
.header .dropdown-menu li:nth-of-type(5) .user-menu button.menu-list-item{
  border-radius: 0px 0px 10px 10px;
}
.user-menu .menu-list-item span{
  color: #524F5D !important;
}
.menu-list-item:hover span{
  color: #ffffff !important;
}
.header .dropdown-menu{
  width: 15.7rem;
}
.user-menu-chip:hover{
  opacity: .9;
}
.header .dropdown-menu li{
  margin-right: 0 !important;
}
.header .dropdown-menu li
.header .user-menu button.menu-list-item{
  width: 100%;
}

/* /// BOTÕES DP HEADER /// */
.links a,
.links span{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.91) !important;
  padding: 0px;
  margin-left: 1rem;
}
li:nth-child(5){
  margin-right: 1rem;
}

.links span{
  margin-left: 0rem;
}

.links a:hover,
.header .links span.logout:hover {
  text-shadow: #fff 0 0 0.5px, #fff 0 0 1px, #fff 0 0 1.5px;
  transition: all .3s ease
}

a:not(.button){
  border: none !important;
  text-decoration: none;
}

.links span {
  padding: 3px 5px 3px 5px;
}

.header .links span.logout {
  padding: 3px 0px 0px !important;
}



/*///  FORMULÁRIO DE PESQUISA - VACCINATIONS ///*/

/* /// CONTAINER /// */
.forms-container{
  background-color: white;
  padding: 25px 30px 30px;
  border-radius: 7px;
  padding: 20px 30px;
  margin-bottom: 30px;
  /* margin-top: 30px; */
  /* box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1); */
}

.forms {
  display: flex;
  align-items:flex-start;
  justify-content: space-between;
}

.military-input, 
.ome-input, 
.date-select{
  display: flex;
  align-items: left;
  flex-direction: column;
  margin-bottom: 10px;
}

.ome-input label{
  margin-bottom: 2px;
}
.date-container p, 
.military-container p, 
.vaccine-container p{
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.vaccine-container:last-child() {
  margin-top: 10px !important;
}

/* /// BOTÃO DE PESQUISA /// */
input[type="submit"]{
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  font-size: 1rem;
  height: 35px !important;
  border-width:0px;
  color:#fff;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  background-color: rgb(206, 35, 35);
}

input[type="submit"]:hover {
  background-color: rgba(203, 38, 38, 0.95);
}

input[type="submit"]:active {
  background-color: rgb(206, 35, 35, 0.9);
}

.btn-search input[type="submit"]{
  font-family: "Lato", serif !important;
  height: 42px !important;
  font-size: 1.1rem;
  margin-top: 12px;
}
.btn-search {
  width: 49%;
}

.btn-form-search{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

/* /// BOTÃO DE EDITAR EM SHOW VACCINATIONS /// */

.btn-show-edit{
  margin-top: 15px;
  height: 35px !important;
  border-width:0px;
  border-radius: 3px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  background-color: rgb(206, 35, 35);
  text-align: center;
}

.btn-show-edit a{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color:#fff !important;
}

.btn-show-edit:hover {
  background-color: rgba(203, 38, 38, 0.95);
}

.btn-show-edit:active {
  background-color: rgb(206, 35, 35, 0.9);
}

/* /// BOTÃO DE LIMPAR FILTROS /// */
.btn-clean-filters,
.btn-home,
.btn-cancel{
  width: 100%;
  margin-top: 12px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.btn-back{
  margin-top: 12px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-back a{
  border-radius: 3px;
  color: rgb(206, 35, 35) !important;
  border: 1px solid rgb(206, 35, 35) !important;
  height: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight:400 ;
}

.btn-clean-filters a,
.btn-home a,
.btn-back a,
.btn-cancel a {
  cursor: pointer;
  color: #5f5c68 !important;
}

.btn-clean-filters a:hover,
.btn-home a:hover,
.btn-back a:hover,
.btn-cancel a:hover  {
  cursor: pointer;
  color: rgba(154, 1, 0, 100%) !important;
}

.btn-clean-filters{
  width: 49%;
}
.btn-clean-filters a,
.btn-cancel a{
  border-radius: 8px;
  color: rgb(206, 35, 35) !important;
  border: 1px solid rgb(206, 35, 35) !important;
  height: 40px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight:400 ;
}

.btn-back a,
.btn-cancel a {
  border: none !important;
  color: #5f5c68 !important;
}

/* /// INPUTS  /// */

input,
textarea,
select {
  box-sizing: border-box;
  height: 40px !important;
  padding: .5rem;
  border-radius: 8px;
  border: 1px solid #dcdee2;
  color: #5f5c68;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: "Lato", serif;
}

input[type="submit"]{
  border: none !important;
}

textarea {
  height: 5em !important;
}

select option:hover{
  color: #5f5c68;
  background-color: aqua !important;
}

select div{
  background-color: yellow !important;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline: none !important;
  background-color: white !important;
  color: #5f5c68;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.nice-select-search:focus-visible{
  border: none !important
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #524F5D !important;
    -webkit-box-shadow: 0 0 0px 1000px #f1f1f1 inset;
}

.nice-select.open, 
.nice-select-dropdown{
  border: 1px solid rgb(138, 57, 57) !important ;
  margin-top: 0px !important;
}

.nice-select .option:hover, 
.nice-select .option.focus, 
.nice-select .option.selected.focus{
  background-color: #ffe1e1 !important;
}

.nice-select{
  display: flex !important;
  align-items: center;
}

.nice-select span{
  color: #5f5c68  !important;
}

/* /// TABELA DE REGISTRO DAS VACINAS APLICADAS /// */
.vaccinations,
.vaccinations-card-mobile{
  margin-top: 2rem;
  max-height: 620px;
  padding-right: 2px;
  /* overflow-y: scroll;
  overflow-x: hidden; */
  /* padding-right: 2px; */
}
.vaccinations{
  padding-right: 0px;
}

.vaccinations-table{
  box-shadow:rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px
}

.main .vaccinations-size{
  text-align: right;
  width: 100%;
  margin: 10px 10px 0px 0px !important;
}

p span{
  font-weight: bold;
  margin: 0px !important;
  padding: 0px !important;
  font-size: 1em;
}

.vaccinations::-webkit-scrollbar,
.vaccinations-card-mobile::-webkit-scrollbar {
  width: 4px;
  height: 3px;
  padding-left: 10px !important;
}

.vaccinations::-webkit-scrollbar-track,
.vaccinations-card-mobile::-webkit-scrollbar-track {
  background: rgb(253, 200, 200);
}

.vaccinations::-webkit-scrollbar-thumb,
.vaccinations-card-mobile::-webkit-scrollbar-thumb {
  background-color: rgb(195, 58, 58);
  border-radius: 100px;
}

tbody tr td:first-child{
  text-transform: uppercase !important;
}

table {
  max-height: 300px;
  border-collapse: collapse;
  border-spacing: 0 5px;
  width: 100%;
  background-color: white;
  border-radius: 7px;
}

thead{
  height: 50px;
  background-color: rgba(154, 1, 0, 100%);
  color: white;
  top: 0;
}

table tr {
  font-size: 0.9rem;
}

th:first-child{
  border-radius: 7px 0px 0px 0px;
}

th:last-child{
  border-radius: 0px 7px 0px 0px;
}

td {
  padding: .7rem .2rem;
  height: 100%;
  text-align: center;
}

td:last-child {
  padding: 0px;
  text-align: center;
}

tr:nth-of-type(odd) td {
  background-color: rgb(250, 242, 242);
  color: #524F5D;
}

.sort_link{
  color: white !important;
  font-weight: bold !important;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #524F5D;
  font-size: 16px;
}

button:hover {
  color: rgba(154, 1, 0, 100%);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 160px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  padding: 0;
  color: #524F5D;
}

.dropdown-menu a, .dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 8px 16px;
  text-decoration: none;
  color: #524F5D;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: .9rem;
}

.dropdown-menu button{
  width: 100%;
}

.dropdown-menu a:hover, .dropdown-menu button:hover {
  color: #fff;
  background-color: #f58b90;
  font-weight: 600;
}

.dropdown-menu a:hover span, .dropdown-menu button:hover span{
  color: #fff;
}

.dropdown-menu a span,
.dropdown-menu button span{
  font-size: 1.3rem;
  color: #8f8f8f;
}

.dropdown {
  position: relative;
  display: inline-block;
  overflow: visible;
}

table td {
  position: relative;
  overflow: visible;
}
button .edit-item{
  font-size: 1.3rem;
}

@media(min-width: 577px){
  .vaccination_search{
    margin: 2px 2px 30px 2px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    -moz-box-shadow:rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 7px;
  }
}

/* /// NOVA VACINAÇÃO E NOVA VACINA /// */
.show-container-type-one,
.container-type-one, 
.form-vaccine-container,
.campaign-container,
.form-vaccine_brand-container,
.applicator-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border-radius: 7px;
  padding: 15px;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-top: 40px;
  box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
}

.show-container-type-one div,
.container-type-one div, 
.form-vaccine-container div,
.form-vaccine_brand-container div,
.campaign-container div,
.applicator-container div{
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-bottom: 10px;
}

.campaign-container div{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.show-container-type-one div div,
.container-type-one div div, 
.form-vaccine-container div div,
.form-vaccine_brand-container div div,
.campaign-container div div
.applicator-container div div{
  width: 100%;
}

.new-edit-screen-type-one h1, 
.new-edit-vaccine-screen h1,
.new-edit-campaign-screen h1,
.new-edit-applicator-screen h1{
  margin-left: 25%;
  font-weight: normal;
}

.new-edit-screen-type-one, 
.new-edit-vaccine-screen,
.new-edit-campaign-screen,
.new-edit-applicator-screen{
  height: 100%;
  max-width: 70rem;
  padding-top: 1%;
  margin-left: 5rem;
  margin-right: 5rem;
}

.show-this-vaccination, .cancel {
  margin: 15px auto 0px auto !important;
  text-align: center;
}

.show-this-vaccination a {
  padding: 5px 10px;
  color: #524F5D !important;
  border: 1px solid #524F5D !important;
  border-radius: 50px !important;
}

.show-this-vaccination a:hover {
  color: rgba(154, 1, 0, 100%) !important;
  border: 1px solid rgba(154, 1, 0, 100%) !important;
}

/* /// REGISTRO DA VACINAÇÃO /// */
.vaccination-register-container div{
  display: flex;
  justify-content: space-between;
  padding: 0px 5px;
  align-items: center;
}

.vaccination-register-container div a, 
.vaccination-register-container div button, 
.btn-edit,
.cancel a {
  color: #524F5D !important;
  font-size: 14px;
}

.vaccination-register-container div a:hover, 
.vaccination-register-container div button:hover, 
.btn-edit:hover,
.cancel a:hover{
  color: rgba(154, 1, 0, 100%) !important;
}

.vaccination-register-container div button{
  margin-right: 10px;
}

/* /// VACINAS E CAMPANHAS /// */
.vaccines-container{
  height: 100%;
}
.resource-index-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 21px;
}

#vaccines,
#vaccine_brands,
#campaigns,
#applicators{
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

#vaccines .pagination,
#vaccine_brands .pagination,
#campaigns .pagination,
#applicators .pagination{
  margin-top: 1rem;
}


.vaccine-card, 
.vaccine_brand-card,
.campaign-card{
  background-color: white;
  border-radius: 7px;
  width: 250px;
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.campaign-card{
  align-items: flex-start;
}

.campaign-card{
  width: 250px;
  height: auto;
}
.campaign-card p {
  overflow-wrap: break-word;
}

.vaccine-card div p,
.vaccine_brand-card p,
.campaign-card div p{
  margin: 0px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vaccine-card p,
.vaccine_brand-card p,
.campaign-card p{
  margin: 5px 0px 0px 0px
}

.btn-new {
  color: white !important;
  width: 100% !important;
  display: flex;
  height: 100%;
  font-size: 1.1em;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
  
.btn-new-container{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: auto;
  height: 3rem;
  border-width:0px;
  color:#fff;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  background-color: rgb(206, 35, 35);
  padding-inline: 1.5rem;
}

.btn-new-container:hover {
  background-color: rgba(165, 43, 43, 0.95);
}

.btn-new-container:active {
  background-color: rgb(206, 35, 35, 0.9);
}

.card-actions{
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid gray;
  height: 2.7rem;
  border-radius: 0px 0px 7px 7px;
}

.card-actions div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0px !important;
  height: 100%;
}
.card-actions div:hover{
  color: white;
}

.btn-delete form,
.btn-edit form {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.btn-delete form button,
.btn-edit a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

a{
  color: #524F5D
}
.btn-delete form button:hover,
.btn-edit a:hover{
  background-color: rgb(231 231 231 / 75%);
  border-radius: 0px 0px 7px 0px;
}

.description-campaign-container{
  padding: 0px !important;
}

.campaign-name,
.vaccine-name,
.vaccine_brand-name,
.vaccine-option-container label{
  text-transform: uppercase !important;
}

.campaign-name{
  margin-bottom: 10px !important;
}

.description-campaign-container{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.vaccine-option label{
  display: flex;
  align-items: center;
  font-size: 0.8em !important;
}

.description-campaign{
  font-size: 0.8em;
}

.vaccine-option-container{
  display: grid !important;
  grid-template-columns: 33.33% 33.33% 33.33% !important;
}

i.fa {
  font-size: 18px;
}

.vaccination-actions{
  display: flex;
  justify-content: center;
}

.center-pagination {
  padding: 10px;
  text-align: center;
}

.results-container{
  display: flex; 
  align-items: center; 
  justify-content: flex-end;
}

.pagination-container{
  width:33%;
  align-items: flex-end;
}

.results {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: right;
  width:33%;
}

/*//////// PAGINAÇÃO ////////*/
.pagination span{
  color: rgb(90, 90, 90);
  margin-right: 5px;
}
.pagination span:hover{
  color: rgb(90, 90, 90);
  border-bottom: 1px solid rgb(90, 90, 90);
}
.pagination span a{
  color: rgb(90, 90, 90)
}
.pagination .page.current{
  color: rgba(154, 1, 0, 100%);
  font-weight: bold;
}
 .pagination .first,
 .pagination .last{
  display: none;
 }

.notice-any{
  display: none;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.33);
  font-style: italic;
}

td {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 18rem
}
td:nth-child(2){
  max-width: 5rem;
}
td:nth-child(4){
  max-width: 12rem;
}

/*//////// Search Form dos Recursos ////////*/

.actions-index-container{
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  justify-content: space-between;
}

.resource-search-form{
  background-color: #fff;
  width: min-content;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.input-text-search-container {
  display: flex;
  align-items: center;
  padding: .3rem;
}

.input-text-search-container input:focus-visible{
  box-shadow: none !important;
}

.resource-search-form input[type='text']{
  border: none;
  text-indent: .5rem;
}

.resource-search-form input[type='text']:focus-visible{
  border: none !important;
  background-color: #f3f3f3 !important;
}

.resource-search-form input[type='text']::placeholder{
  font-family:  'Lato', serif;
}

.resource-search-form button{}
/* ////////// PAINEL ADM ////////// */
.admin-cards{
  display: flex;
}
.admin-cards > div:nth-child(2){
  margin-left: 1rem;
  width: max-content;
}
.user-container{
  width: 30%;
  height: fit-content;
  background-color: #fff;
  padding: 2rem;
  border-radius: 7px;
  box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
}
.user-container h2{
  margin-top: 0;
}
.user-container .pagination-user{
  margin-top: 1.7rem
}
.add-user-form div{
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.edit_user{
  width: 22rem;
}
.user-accordion{
  box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
  -webkit-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
  -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
  padding: 0.5rem;
  border-radius: 7px;
}
.user-accordion summary{
  display: flex;
  justify-content: space-between;
}
.caret{
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  color: rgba(154, 1, 0, 100%) 
}
details i.fa-caret-up{
  display: none;
}
details[open] i.fa-caret-up{
  display: block;
}
details[open] i.fa-caret-down{
  display: none;
}
.subtable-details-type-two{
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
  /* border: 0.15rem solid rgba(154,1,0); */
  padding: 0.5rem;
  font-size: 0.8rem;
  border-radius: 1rem;
  /* box-shadow: 0px 1px 3px 2px rgba(131, 131, 131, 1);
  -webkit-box-shadow: 0px 1px 3px 2px rgba(131, 131, 131, 1);
  -moz-box-shadow: 0px 1px 3px 2px rgba(131, 131, 131, 1); */
  text-transform: capitalize;
}
.subtable-details-type-two span{
  font-weight: bold;
}
.subtable-details-type-two input, select{
  width: -webkit-fill-available;
}
.subtable-details-type-two span, select{
  margin-bottom: .5rem;
}
.pagination-user nav.pagination{
  text-align: right !important;
}
.grid-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem
}

/* ////////// VACCINATION CARD //////////*/
.vaccination-card-search-form{
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 1rem;
  border-radius: 7px;
  box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
  -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
}
.vaccination-card-search-form > div {
  margin-top: .5rem;
  display: flex;
  align-items: center;
}

.resource-search-form .search{
  background-color: #ce2323;
  align-self: stretch;
  color: #fff;
}

.resource-search-form .search:hover{
  background-color: #b91d1d;
}

.resource-search-form button.clear-search span{
  font-size: 1.3rem;
  color: #8f8f8f;
}
.resource-search-form button.clear-search span:hover{
  color: #b91d1d;
}

.vaccination-card-search-form input[type = "text"]{
  /* padding: .1rem; */
}
.btn-vaccination-card-search{
  margin-left: .5rem;
  height: 30px;
  background-color: #a40100;
  color: #fff;
  border-radius: .3rem;
}
.btn-vaccination-card-search:hover{
  color: #fff;
  background-color: #e74140;
}
.vaccinations-table tr:last-child td:first-child,
.vaccinations-card-mobile-table tr:last-child td:first-child{
  border-radius: 0 0 0 7px;
}
.vaccinations-table tr:last-child td:last-child,
.vaccinations-card-mobile-table tr:last-child td:last-child{
  border-radius: 0 0 7px 0;
}
.vaccinations-table{
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.vaccinations-card-desktop{
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.military-data-desktop h3, h4{
  margin: 0;
}
.military-data-desktop h3{
  margin-right: .5rem;
}
.military-data-desktop h4{
  font-weight: normal;
}
.military-data-desktop div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.vaccinations-card-desktop button{
  color: rgba(154, 1, 0, 100%)
}
.vaccinations-card-desktop-table{
  border: 7px;
  overflow: hidden;
}

/* ////////// NEW HOME CARD ////////// */
.home-card-container{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3,31%);
  grid-template-rows: 10rem 10rem 10rem;
  grid-row-gap: 2rem;
  justify-content: space-evenly;
}
.card-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: white;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0px 1px 3px 1px rgb(131 131 131);
  -webkit-box-shadow: 0px 1px 3px 1px rgb(131 131 131);
  -moz-box-shadow: 0px 1px 3px 1px rgba(131, 131, 131, 1);
}
.card-item:last-child{
  grid-column: span 3;
}
.card-item h1{
  font-size: 1.6rem;
  margin: 0;
}
.link-card{
  display: block;
  height: 100%;
}
.card-item form{
  display: block;
  height: fill-available;
  height: -webkit-fill-available;
  height: -moz-available;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-available;
}
.card-item form button{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-available;
  margin: 0;
  padding: 1.4rem;
}
.card-item form button i.fa{
  font-size: 2rem ;
}
.card-item form button:hover{
  background-color: #5d5d5d14;
}
.home-welcome{
  text-align: center;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */





@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot);
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot?#iefix) format('embedded-opentype'), url(/assets/fontawesome-webfont-fa79d127baca4558a0b973f5f514b90fc5ef43314c41095f5cb285ffaa0a4029.woff2) format('woff2'), url(/assets/fontawesome-webfont-c9a0a23a23a3f6f7165cba218b40483a0b1750d92b49c40842f1d8f566f5f421.woff) format('woff'), url(/assets/fontawesome-webfont-2794b002e3568f5abce8991e2431ca79e0ce84a08ea1268884b4e097b62762a6.ttf) format('truetype'), url(/assets/fontawesome-webfont-67c6c8e9ffb0fcd7c7c64eaff12a298abf5b54a54b54f0e6c4c49161dba62d6d.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
