@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

/*----header----*/
.header-wraper {
  padding-top: 6px;
  padding-left: 30px;
  padding-right: 30px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 6.5px 0px;
}
.header-inner a.header-branding {
  max-width: 83px;
}
.menu-sec {
  display: flex;
  margin-right: 3%;
  flex-wrap: wrap;
  flex: 0 0 85%;
  justify-content: flex-end;
}
.nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-inner li {
  margin: 0 10px;
  padding: 0.618em 0;
  position: relative;
  text-align: center;
  list-style: none;
}
.nav-inner li a {
  color: #000000;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-inner li i {
  color: #0c426d;
  font-size: 12px;
}
.nav-inner li:hover span.Header-nav-folder,
.nav-inner li:hover ul.Header-nav-folder {
  left: 0;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: left 0s linear, transform 0.2s ease-out,
    opacity 0.2s ease-out;
  -moz-transition: left 0s linear, transform 0.2s ease-out,
    opacity 0.2s ease-out;
  -ms-transition: left 0s linear, transform 0.2s ease-out, opacity 0.2s ease-out;
  -o-transition: left 0s linear, transform 0.2s ease-out, opacity 0.2s ease-out;
  transition: left 0s linear, transform 0.2s ease-out, opacity 0.2s ease-out;
}
span.Header-nav-folder,
ul.Header-nav-folder {
  position: absolute;
  top: 100%;
  left: -99999px;
  z-index: 1002;
  margin-left: -1em;
  padding: 1em;
  opacity: 0;
  white-space: nowrap;
  text-align: left;
  -webkit-transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  -ms-transform: translate3d(0, 10px, 0);
  -o-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  -webkit-transition: left 0s 0.2s linear, transform 0s 0.2s linear,
    opacity 0.2s ease-out;
  -moz-transition: left 0s 0.2s linear, transform 0s 0.2s linear,
    opacity 0.2s ease-out;
  -ms-transition: left 0s 0.2s linear, transform 0s 0.2s linear,
    opacity 0.2s ease-out;
  -o-transition: left 0s 0.2s linear, transform 0s 0.2s linear,
    opacity 0.2s ease-out;
  transition: left 0s 0.2s linear, transform 0s 0.2s linear,
    opacity 0.2s ease-out;
  background-color: #000;
}
.nav-inner li a.Header-nav-folder-item,
ul.Header-nav-folder a {
  display: block;
  padding: 0.382em;
  color: #fff;
  font-size: 13px;
  text-align: left;
}
ul.Header-nav-folder li {
  margin: 0;
  padding: 0;
}
.nav-inner li.menu-item-has-children:before {
  content: "\f078";
  position: absolute;
  right: 0px;
  font-family: "Font Awesome 5 Pro";
  top: 9px;
  color: #000;
}
.nav-inner li.menu-item-has-children {
  position: relative;
  padding-right: 15px;
}
.burger {
  cursor: pointer;
  position: relative;
  z-index: 9;
  padding: 0;
  display: flex;
  align-items: center;
  display: none;
}
.burger .lines {
  width: 30px;
  height: 25px;
  position: relative;
  display: inline-block;
}
.burger .lines div:first-of-type {
  top: 1px;
}
.burger .lines div {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #084872;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transition: top 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    width 0.2s cubic-bezier(0.3, 1.4, 0.7, 1),
    bottom 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: top 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    width 0.2s cubic-bezier(0.3, 1.4, 0.7, 1),
    bottom 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    width 0.2s cubic-bezier(0.3, 1.4, 0.7, 1),
    bottom 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    width 0.2s cubic-bezier(0.3, 1.4, 0.7, 1),
    bottom 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    width 0.2s cubic-bezier(0.3, 1.4, 0.7, 1),
    bottom 0.2s cubic-bezier(0.3, 1.4, 0.7, 1) 0.2s,
    -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.burger .lines div:last-of-type {
  top: auto;
  bottom: 1px;
}
.burger.open .lines div:first-of-type {
  transform: rotate(-50deg) translateY(5px);
  background: #fff;
}
.burger.open .lines div:nth-of-type(2) {
  transform: rotate(45deg) translateY(-6px);
  background: #fff;
}
.burger.open .lines div:last-of-type {
  transform: rotate(45deg) translateY(-4px);
  background: #fff;
  opacity: 0;
}
.burger.open .lines div:first-of-type {
  transform: rotate(-50deg) translateY(8px);
}
.burger.open .lines div:nth-of-type(2) {
  transform: rotate(45deg) translateY(-8px);
}
.burger.open .lines div:last-of-type {
  transform: rotate(45deg) translateY(-4px);
  opacity: 0;
}
.burger.open {
  position: fixed;
  right: 34px;
  top: 40px;
}
/********************Voting Popup**********************/
.nav-inner li.menu-item-has-children:before {
  content: "\f078";
  position: absolute;
  right: -10px;
  font-family: "Font Awesome 5 Pro";
  top: 9px;
  color: #000;
}
.nav-inner li.menu-item-has-children.active::before {
  content: "\f077";
}
.nav-inner li.menu-item-has-children {
  position: relative;
}
.voting-motal-title-section h2 {
  font-size: 36px;
  color: #c31627;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.voting_popup_logo img {
  max-width: 188px;
  margin: 0 auto;
}
div#voting_instriction_popup .modal-dialog.modal-dialog-centered {
  max-width: 767px;
}
.voting-motal-title-section p {
  font-size: 20px;
  line-height: 35px;
  color: #0c426d;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.voting-motal-title-section {
  padding: 10px;
  text-align: center;
}
.voting-modal-start-section {
  background: #0c426d;
}
.voting-modal-section {
  margin: 0 auto;
  background: #ededed;
}
.voting_popup_logo.text-center {
  padding-top: 25px;
}
.voting-modal-start-section h3 {
  background: #c31627;
  color: #fff;
  padding: 8px;
  font-size: 26px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0px;
  text-align: center;
}
.voting-modal-option p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
button.modal-start-voting {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
button.modal-start-voting {
  max-width: 200px;
  display: block;
  margin: 0 auto;
  color: #0c426d;
  background: #fff;
}
.voting-modal-option {
  padding: 20px;
  background: url("../images/voting_modal_option_bg.png");
  background-size: cover;
  background-position: center;
}
button.modal-start-voting {
  max-width: 314px;
  display: block;
  margin: 0 auto;
  color: #0c426d;
  background: #fff;
  text-transform: uppercase;
  font-size: 15px;
  padding: 9px 18px;
  margin-top: 13px;
  font-weight: 600;
}
button.modal-start-voting i {
  color: #c31627;
}
.voting-modal-start-section {
  background: #0c426d;
  padding-bottom: 0px;
}
.voting-modal-option ul li:before {
  position: absolute;
  content: "\f058";
  left: 0;
  font-family: "Font Awesome 5 Pro";
}
#voting_instriction_popup .modal-body {
  padding: 0px;
}
.voting-modal-option ul li {
  font-size: 20px;
  color: #fff;
  position: relative;
  padding-left: 25px;
  margin-left: 0;
  list-style: none;
}
.voting-modal-option ul {
  max-width: 424px;
  margin: 0 auto;
}
h1.voting_banner_heading.hidden {
  display: none;
}
.atlest_five_beer_heading {
  color: #084872;
  font-size: 22px;
}
.atlest_five_beer_subheading {
  color: #000;
  font-size: 17px;
  font-weight: 600;
}
.registration_link {
  background: #fff;
  padding: 12px 0px;
  text-align: center;
}
.registration_link a {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: bold;
  color: #0c426d;
  text-decoration: none;
}
.registration_link a.modal-start-voting i {
  color: #c31627;
  margin-right: 9px;
}
.page-template-template-registration .banner_start_voting.text-center p,
.page-template-template-nz-registration .banner_start_voting.text-center p {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
  color: #084872;
  font-family: "Oswald", sans-serif;
}
.page-template-template-registration .banner_start_voting.text-center img,
.page-template-template-nz-registration .banner_start_voting.text-center img {
  margin: 0 auto;
}
.voting_banner img {
  margin: 0 auto;
}
.voting_banner h1.voting_banner_heading {
  color: #084872;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.voting_banner p.voting_banner_subheading {
  color: #084872;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.home_about_section h2 {
  font-size: 32px;
  line-height: 46px;
  color: #084872;
  font-weight: 700;
  text-align: center;
  margin-bottom: 23px;
  font-family: "Montserrat", sans-serif;
}
.home_about_section p {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: #000000;
  font-weight: 400;
}

#voting_progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
}
#voting_progressbar li {
  list-style-type: none;
  color: #084872;
  font-size: 18px;
  width: 33.33%;
  float: left;
  position: relative;
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
#voting_progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: block;
  font-size: 22px;
  color: #084872;
  background: #fff;
  border-radius: 100%;
  margin: 0 auto 10px auto;
  border: 1px solid #e0e0e0;
}
ul#voting_progressbar li.active {
  color: #c31627;
}
section.voting_home_section {
  padding-top: 10px;
}
#voting_progressbar li:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  left: -50%;
  top: 30px;
  z-index: -1;
}
#voting_progressbar li:first-child:after {
  content: none;
}
#voting_progressbar li.active:before,
#voting_progressbar li.active:after {
  background: #fff;
  color: #c31627;
  border: 1px solid #c31627;
}

ul#voting_progressbar li.complete {
  color: #c31627;
  cursor: pointer;
}
.brewery_section {
  position: relative;
  border: 1px solid #e0e0e0;
}
.brewery-loder i {
  font-size: 36px;
  color: #fff;
}
.brewery_col_inner.active {
  position: relative;
}
.brewery-loder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.brewery-loder-section {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 72, 114, 0.8);
}
#voting_progressbar li.complete:before,
#voting_progressbar li.complete:after,
#voting_progressbar li.nominate_bar.active:after {
  background: #fff;
  color: #37c316;
  border: 1px solid #37c316;
}

li.beer_bar.active::after {
  border-color: #37c316 !important;
}

.brewery_grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.brewery_grid .brewery_col {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0px 14px 14px;
}
.brewery_col_inner .brewery_lgo {
  border: 1px solid #e0e0e0;
  padding: 26px;
  position: relative;
}
.brewery_col_inner {
  text-align: center;
  cursor: pointer;
}
span.brewary_selected,
span.beer_selected {
  color: #084872;
  font-size: 16px;
  font-weight: 500;
}
.brewery_col_inner .brewery_lgo img {
  max-height: 105px;
  margin: 0 auto;
  min-height: 105px;
  object-fit: contain;
}
.brewery_col_inner h3 {
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
}
.brewery_inner_section {
  max-height: 1000px;
  overflow-y: scroll;
  margin: 0 10px;
  position: relative;
}
.brewery_inner_section::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #efefef;
}
.brewery_inner_section::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.brewery_inner_section::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #6f6f6f;
}
div#serch_fav_brewery {
  padding: 20px;
}
div#serch_fav_brewery .form-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
div#serch_fav_brewery .form-group .seacrh_form_first_sec {
  flex: 0 0 66%;
}
div#serch_fav_beer .seacrh_form_second_sec_ a {
  background: #c31627;
  color: #fff;
  text-transform: uppercase;
  border-color: #c31627;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 0;
  height: 50px;
  line-height: 49px;
  padding: 0px 18px;
  margin-left: 0px;
  display: block;
  text-align: center;
}
div#serch_fav_brewery .form-group .seacrh_form_second_sec {
  flex: 0 0 10%;
}
#serch_fav_brewery .form-group input#filter_brewery {
  width: 100%;
  padding: 7px 23px;
  font-size: 16px;
  border: 1px solid #e9e9e9;
  font-family: "Montserrat", sans-serif;
  color: #9b9b9b;
  font-weight: 500;
}
#serch_fav_brewery .form-group a.clear_serch_section {
  background: #c31627;
  color: #fff;
  text-transform: uppercase;
  border-color: #c31627;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 0;
  height: 50px;
  line-height: 49px;
  padding: 0px 18px;
  margin-left: 0px;
  display: block;
  text-align: center;
}
#serch_fav_brewery .form-group input#submit_brewery_filter {
  background: #c31627;
  color: #fff;
  text-transform: uppercase;
  border-color: #c31627;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 0;
}
section.home_about_section {
  padding-bottom: 0px;
}
section.voting_home_section {
  padding-top: 60px;
}
input#filter_brewery:focus,
input#filter_brewery:active {
  border: 1px solid #e9e9e9;
  outline: unset;
}
#serch_fav_brewery input {
  height: 50px;
  border-radius: 0;
}
div#serch_fav_beer .form-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
div#serch_fav_beer .form-group .seacrh_form_first_sec {
  flex: 0 0 66%;
}
div#serch_fav_beer .form-group .seacrh_form_second_sec {
  flex: 0 0 10%;
}
div#serch_fav_beer .form-group .seacrh_form_second_sec_ {
  flex: 0 0 18%;
}
span.can_not_find_beer_sec a.can_not_find_beer {
  background: #aaaaaa;
  font-size: 15px;
  height: 50px;
  line-height: 0;
  font-weight: 700;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  padding: 1.1em 1.44em;
  color: #fff;
  display: inline-block;
  line-height: 14px;
}
#serch_fav_beer .form-group input#filter_beer {
  width: 100%;
  padding: 7px 23px;
  color: #9b9b9b;
  font-weight: 500;
  border: 1px solid #e9e9e9;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
input#submit_beer_filter {
  line-height: 0;
  background: #c31627;
}

a.can_not_find_beer {
  background: #aaaaaa;
  font-size: 15px;
  height: 50px;
  line-height: 0;
  font-weight: 700;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  padding: 1.1em 1.44em;
  color: #fff;
}
button.can_not_find_beer {
  background: #aaaaaa;
  font-size: 15px;
  height: 50px;
  line-height: 0;
  font-weight: 700;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
#serch_fav_beer .form-group input#submit_brewery_filter {
  background: #c31627;
  color: #fff;
  text-transform: uppercase;
  border-color: #c31627;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 0;
}
input#filter_beer:focus,
input#filter_beer:active {
  border: 1px solid #e9e9e9;
  outline: unset;
}
#serch_fav_beer input {
  height: 50px;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
.swal2-popup.swal2-modal {
  max-width: 459px;
  padding: 35px;
  width: 100%;
}
button.swal2-confirm.swal2-styled.swal2-default-outline {
  font-size: 19px;
  padding: 14px 24px;
  line-height: 19px;
  outline: unset !important;
  box-shadow: unset !important;
  text-transform: capitalize;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
span.no_beercan_found {
  color: #000;
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
}
span.no_beercan_found_title {
  color: #084872;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
}
.beer_box_detail {
  padding: 0px 0px 20px;
}
.beer_box_image.text-center {
  border: 1px solid #e0e0e0;
  padding: 35px;
  position: relative;
  max-height: 385px;
}
.beer_box_hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 72, 114, 0.8);
  display: none;
}
.beer_box_hover .hover_content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  position: relative;
  padding: 20px;
}
.hover_content button {
  background: #fff;
  width: 100%;
  margin-bottom: 10px;
  color: #084872;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration: none;
}
.beer_box_image:hover .beercan_designer_name p {
  color: #fff;
  position: relative;
}
.beercan_designer {
  padding: 10px 25px;
  color: #fff;
  position: absolute;
  bottom: 0;
}
.ribbon {
  position: absolute;
  width: 145px;
  height: 39px;
  line-height: 40px;
  padding-left: 15px;
  position: absolute;
  left: -9px;
  top: 10px;
  background: #c31627;
  color: #fff;
  font-size: 15px;
  display: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.beer_box_title.text-center {
  color: #084872;
  margin-top: 13px;
}
.beer_box_title.text-center p {
  padding: 0 10px;
  font-size: 18px;
  line-height: 28px;
  color: #084872;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.beer_box_image.text-center img {
  margin: 0 auto;
}
.beer_box_image.text-center:hover .beer_box_hover {
  display: block;
}
div#voting_instriction_popup {
  background: #141414c9;
  padding-right: 0 !important;
}
.hover_content i.fas.fa-check-circle {
  color: #c31627;
  background: #fff;
  border-radius: 50%;
  font-size: 57px;
  line-height: 57px;
  border: none;
  padding: 0;
  display: none;
}
.beer_box_hover.selected .hover_content i.fas.fa-check-circle {
  display: block;
}
.beer_box_hover.selected {
  display: block;
}
.beer_box_hover.selected {
  display: block;
  background: #fffc;
}
.beer_box_hover.selected .hover_content button.vote_beercan_btn {
  display: none;
}

/****** 23-11-21 *********/
.add_nominate_section .selected_beers_can_row {
  display: flex;
  align-items: center;
}
.add_nominate_section .selected_beers_can_row .selected_beers_can_col {
  flex: 0 0 25%;
  max-width: 25%;
}
.add_nominate_section .selected_beers_can_row h4 {
  font-size: 18px;
  line-height: 46px;
  color: #000000;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.add_nominate_section .add_nominate_section_inner {
  border: 1px solid #e6e6e6;
  padding: 20px 30px;
}
p.confirmation_sec_description {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}
.add_nominate_section .seleceted_beers_can {
  border: 1px solid #e6e6e6;
  padding: 40px 0 20px 0;
}
.selected_beers_can_row .beername span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #084872;
  font-weight: 700;
}
.selected_beers_can_col-img {
  flex: 0 0 10%;
  max-width: 10%;
}
.selected_beers_can_col-name,
.selected_beers_can_col-order {
  flex: 0 0 36%;
  max-width: 36%;
  padding-right: 30px;
  padding-left: 30px;
}
.selected_beers_can_col-trash {
  flex: 0 0 20%;
  max-width: 20%;
  padding-right: 30px;
  padding-left: 30px;
}
.selected_beers_can_row .beercan-img {
  border: 1px solid #e0e0e0;
  margin: 20px 0;
}
.selected_beercsns_inner .beercan-img img {
  width: 50px;
  margin: 0 auto;
}
.selected_beercsns_inner .selected_beers_can_row {
  border-bottom: 1px solid #e6e6e6;
  cursor: move;
}
.seclect_beer_section {
  border: 1px solid #ccc;
  padding: 45px;
}
div#serch_fav_beer .form-group {
  display: flex;
}

.add_nominate_section #change_beercan {
  background: #c31627;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  line-height: 0;
  padding: 18px 20px;
}
.add_nominate_section #change_beercan:focus {
  outline: none;
}
.add_nominate_section #change_beercan:hover {
  text-decoration: none;
}
.add_nominate_section .register-your-vote-section {
  text-align: center;
  margin-top: 20px;
}
.add_nominate_section #register_vote {
  background: #c31627;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding: 12px 20px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}
.add_nominate_section #register_vote:focus {
  outline: none;
}
.add_nominate_section #register_vote:hover {
  text-decoration: none;
}
.selected_beercsns_inner h2 {
  text-transform: capitalize;
}
.selected_beers_can_col-order h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #c31627;
  font-weight: 700;
}
.selected_beers_can_col-trash i {
  color: #c31627;
  cursor: pointer;
  padding: 20px;
}
.no_beer_found,
.no_brewery_found {
  font-size: 20px;
  text-align: center;
  padding: 49px 0px 0px;
}
button.change_brawery {
  background: #c31627;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: unset;
  outline: unset !important;
  font-family: "Montserrat", sans-serif;
  margin-left: 10px;
  height: 50px;
}
.thank-you-page-voting .banner_start_voting.text-center p {
  color: #084872;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.thanku-inner-section {
  margin: 0 auto;
  padding: 0px 30px;
}
.thanku-inner-section img {
  margin: 0 auto;
}
h2.thnku_sucess_heading {
  font-family: "Montserrat", sans-serif;
  margin: 14px 0px;
  font-size: 26px;
  color: #38bd64;
  font-weight: 700;
  text-align: center;
}

p.thnku_sucess_subheading {
  color: #0c426d;
  text-align: center;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.rating_row.row {
  border: 1px solid #ccc;
  padding: 27px;
}
.rating_row.row .col-md-12 {
  border-bottom: 1px solid #ccc;
  padding: 19px 0px;
}
.rating_row.row .col-md-12:last-child {
  border-bottom: none;
}
.voted_ber_img {
  border: 1px solid #ccc;
  padding: 16px 34px;
  display: inline-block;
}
.voted_ber_img img {
  height: 93px;
}
.voted_ber_name p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  font-weight: 700;
}
.row.share_voting_row {
  background: #edf3f7;
  padding: 13px;
}
.share_voting {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row.share_voting_row {
  background: #edf3f7;
  padding: 13px;
  margin-top: 24px;
}
.share_voting .share_label {
  color: #084872;
  font-size: 18px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.share_icon a {
  color: #084872;
  font-size: 26px;
  margin-left: 14px;
}
.presenting-partner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}
.presenting-partner h4 {
  position: relative;
  font-size: 16px;
  color: #084872;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.presenting-partner h4:before {
  position: absolute;
  content: "";
  background: #084872;
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
}
.presenting-partner img {
  padding: 15px;
  width: auto;
  display: inline-block;
}
.presenting-partner.assocate {
  border-bottom: 0;
  padding: 30px 0;
}
h2.presenting_heading {
  color: #084872;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-top: 48px;
}
.thanku_footer_link {
  color: #c31627;
  font-size: 18px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.thanku_footer_link a {
  color: #c31627;
}
button.swal2-cancel.swal2-styled.swal2-default-outline {
  font-size: 19px;
  padding: 14px 24px;
  line-height: 19px;
  outline: unset !important;
  box-shadow: unset !important;
  text-transform: capitalize;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
span.confermation_title {
  font-size: 28px;
  color: #084873;
}
span.more_voting {
  font-size: 19px;
  font-weight: 600;
  color: #000;
}
.beercan_designer_name p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

span.beer_slection_tilte {
  color: #084872;
  font-size: 25px;
}
span.beer_selection_subtitle {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
div#serch_fav_brewery .form-group .seacrh_form_third_sec {
  flex: 0 0 18%;
}
div#voting_confirm_popup .modal-dialog.modal-dialog-centered {
  max-width: 767px;
}
div#voting_confirm_popup .modal-body {
  padding: 0px;
}
div#voting_confirm_popup .share_voting {
  display: flex;
  align-items: center;
  justify-content: center;
}
#voting_confirm_popup .rating_row.row {
  border: none !important;
  padding: 0px 20px;
}
#voting_confirm_popup .voted_ber_img {
  border: 1px solid #ccc;
  padding: 11px 19px;
  display: inline-block;
}
#voting_confirm_popup .rating_row.row .col-md-12 {
  border-bottom: 1px solid #ccc;
  padding: 8px 0px 5px;
}
#voting_confirm_popup .voted_ber_name p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.back_to_website a {
  background: #c31627;
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
  font-size: 16px;
  margin-top: 3px;
  margin-bottom: 5px;
}
div#serch_fav_brewery .seacrh_form_fourth_sec a.can_not_find_beer {
  display: inline-block;
  line-height: 16px;
  margin-left: 3px;
}
div#serch_fav_brewery .seacrh_form_fourth_sec {
  flex: 0 0 100%;
  margin-top: 20px;
}
#voting_confirm_popup .voted_ber_img img {
  height: 34px;
}
#voting_confirm_popup img[alt="icon"] {
  width: 46px;
  margin: 0 0 0 auto;
}

.add_nominate_section .form-loader {
  display: none;
}
.add_nominate_section .form-loader .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.add_nominate_section .form-loader .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.add_nominate_section .form-loader .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.add_nominate_section .form-loader .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.add_nominate_section .form-loader .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
.add_nominate_section .form_loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0c426d40;
  display: none;
}
.add_nominate_section .form_loader_inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add_nominate_section .form_loader_inner i {
  font-size: 58px;
  color: #c31627;
}
.add_nominate_section {
  position: relative;
}
.brewery_inner_section .form-loader {
  display: none;
}
.brewery_inner_section .form-loader .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.brewery_inner_section .form-loader .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.brewery_inner_section .form-loader .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.brewery_inner_section .form-loader .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.brewery_inner_section .form-loader .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
.brewery_inner_section .form_loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0c426d40;
  display: none;
}
.brewery_inner_section .form_loader_inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brewery_inner_section .form_loader_inner i {
  font-size: 58px;
  color: #c31627;
}
.brewery_inner_section {
  position: relative;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*************************/
.beer_search_ajax {
  margin: 0px !important;
}
.not_found_ajax {
  padding: 20px 0px 73px;
  text-align: center;
  font-size: 22px;
}
.brawery_search_grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.brewery_inner_section .brewery_col {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0px 14px 14px;
}
.brewery_search_col_inner {
  text-align: center;
  cursor: pointer;
}
.brewery_search_col_inner .brewery_lgo {
  border: 1px solid #e0e0e0;
  padding: 26px;
  position: relative;
}
.brewery_search_col_inner h3 {
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
}
.brewery_search_col_inner .brewery_lgo img {
  max-height: 105px;
  margin: 0 auto;
  min-height: 105px;
  object-fit: contain;
}
span.suggestion_thanku_title {
  font-size: 25px;
  color: #084872;
}
p.suggestion_thanku_msg {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
div#gSignInWrapper {
  flex: 0 0 45%;
  font-size: 16px;
  box-shadow: none;
  line-height: 20px;
  padding: 14px;
  color: #0078f6;
  text-transform: uppercase;
  font-weight: 700;
  filter: drop-shadow(0 0 19px rgba(197, 208, 216, 0.75));
  background-color: #ffffff;
  cursor: pointer;
}
div#gSignInWrapper img {
  margin: 0 auto;
}
.fb_iframe_widget {
  flex: 0 0 45%;
  font-size: 16px;
  box-shadow: none;
  line-height: 20px;
  padding: 14px 0px;
  color: #0078f6;
  text-transform: uppercase;
  font-weight: 700;
  filter: drop-shadow(0 0 19px rgba(197, 208, 216, 0.75));
  /* background-color: #ffffff; */
}
section.padding-top {
  padding-bottom: 0px !important;
}
section.padding-bottom {
  padding-top: 0px !important;
}
section.no_padding {
  padding: 0px !important;
}
.champion_b_content h1 {
  font-size: 45px;
  line-height: 80px;
  color: #feffff;
  font-weight: 700;
  text-align: center;
}
.countdown_result_sec .left_sec_content {
  border: 0;
  margin-top: 0;
  padding-top: 0;
}
section.heading_with_content h2 {
  font-size: 36px;
  font-weight: 600;
}
section.heading_with_content p {
  font-size: 14px;
  line-height: 28px;
}
.single_result_page h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
}
.top_100_beers {
  font-size: 16px;
  font-weight: 600;
}
section.champions_page_description p {
  font-size: 18px;
}
.chmapion_logo img {
  margin: 0 auto;
  max-height: 200px;
}
.cmapions_sec .row {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.cmapions_sec .row .campion-col:first-child {
  border-right: 1px solid #ccc;
}
.cmapions_sec .row .campion-col {
  padding: 20px;
}
.year_sec span {
  background: #c31627;
  color: #fff;
  padding: 5px 20px;
  font-size: 21px;
  font-weight: 600;
}
.champion_title_sec h3 {
  color: #084872;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  margin-top: 10px;
}
.champion_title_sec h4 {
  color: #084872;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
}

.champion_title_sec p {
  font-size: 16px;
  line-height: 22px;
}

.hottest_pro_slider .slick-slide {
  padding: 10px;
}
.hottest_pro_slider .blog_txt h4 {
  font-size: 22px;
  color: #084872;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 70px;
  height: 100%;
}
.hottest_pro_slider .slick-prev {
  z-index: 1;
  left: -15px;
  top: 22%;
  font-size: 0px;
  border: none;
  background: transparent;
  position: absolute;
}
.post_slider_title_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hottest_pro_slider .slick-next {
  z-index: 1;
  right: -15px;
  top: 22%;
  font-size: 0px;
  border: none;
  background: transparent;
  position: absolute;
}

section#guid_to_beer_description p {
  padding: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  font-weight: 400;
  text-align: center;
}
.post_slider_title_section .main_title h2 {
  margin-bottom: 0;
}
.post_slider_title_section a {
  color: #084872;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  max-width: 291px;
  width: 100%;
}
.post_slider_title_section .post_slider_title_section a:hover::after {
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  -o-transform: translateX(4px);
  transform: translateX(4px);
}
.post_slider_title_section a:after {
  font-size: 16px;
  display: inline-block;
  content: "\0279E";
  padding-left: 10px;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
section#guid_to_beer_description h2 {
  color: #084872;
  font-size: 30px;
  font-weight: 700;
}
.hottest_pro_slider .slick-prev:before {
  content: url("../images/larr.png");
  width: 40px;
  height: 40px;
  background-color: #fff;
}
.post_slider_title_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.hottest_pro_slider .slick-next:before {
  content: url("../images/rarr.png");
  width: 40px;
  height: 40px;
  background-color: #fff;
}
.winner_table_section .main_title h2 {
  font-size: 26px;
}
table.winner_table th {
  background: #c31627;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
}
table.winner_table th span {
  font-weight: 400;
  font-size: 16px;
}

table.winner_table td {
  text-align: center;
  color: #084872;
  font-weight: 600;
}
table.winner_table tr.tabel_red_column td {
  color: #c31627;
}
table.winner_table tr.tabel_blue_column td {
  color: #fff;
  background: #084872;
  text-transform: uppercase;
}
#map {
  height: 400px;
  width: 100%;
  margin-bottom: 30px;
}
.map_popup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px;
  min-height: 83px;
}
.map_popup_content {
  flex: 0 0 70%;
}
.map_popup_content h2 {
  color: #084872;
  font-size: 19px !important;
  margin-bottom: 0px !important;
  text-align: left !important;
}
.map_popup_content p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 15px;
}
.map_popup .map_popup_logo {
  flex: 0 0 20%;
  max-width: 20%;
}
.map_popup .map_popup_logo img {
  width: 100%;
}
.map_popup_content {
  flex: 0 0 70%;
}
.brewery_address a.mobile_link {
  color: #c31627;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  display: none;
}
@media only screen and (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  .burger {
    display: block;
  }
  .menu-sec {
    display: none;
    position: fixed;
    padding: 0 75px;
    transform: translateX(100%);
    overflow-y: auto;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: scroll;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: transform 0.8s cubic-bezier(0.45, 0.24, 0.13, 0.89);
    -o-transition: transform 0.8s cubic-bezier(0.45, 0.24, 0.13, 0.89);
    transition: transform 0.8s cubic-bezier(0.45, 0.24, 0.13, 0.89);
    overflow: hidden;
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    background: #000;
  }
  .menu-sec ul {
    margin: 0;
    list-style: none;
    padding-top: 90px;
    display: block;
  }
  .menu-sec ul li {
    line-height: normal;
    display: block;
    padding: 0;
    width: 100%;
    text-align: left;
    margin: 10px 0;
  }
  .menu-sec ul li a {
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 500;
  }
  .menu-sec.open {
    transform: translateX(0);
    display: block;
    z-index: 8;
    overflow: hidden;
  }
  .nav-inner {
    overflow-y: scroll;
    height: 100%;
  }

  .header-inner a.Header-branding {
    max-width: 80px;
  }
  .menu-sec ul li.active ul.Header-nav-folder {
    position: static;
    width: 100%;
    display: block;
    background: rgba(70, 70, 70, 3.2);
    padding: 20px;
    margin: 0;
    transform: none;
    -webkit-transition: none;
    transition: none;
    margin-top: 10px;
    opacity: 1;
  }
  .menu-sec ul.Header-nav-folder li a {
    font-size: 13px;
  }
  .menu-sec ul li .fa-chevron-down {
    padding-left: 20px;
  }
  .menu-sec ul li.active .fa-chevron-down:before {
    content: "\f077" !important;
  }
  .nav-inner li i {
    color: #fff;
    font-size: 12px;
  }
  .menu-sec.open {
    padding: 0 30px;
  }
  .nav-inner li.menu-item-has-children:before {
    right: 20px;
    top: 9px;
    color: #fff;
  }
  .nav-inner li.menu-item-has-children.active::before {
    content: "\f077";
  }
  .home_about_section h2 {
    font-size: 28px;
  }
  .brewery_col_inner h3 {
    font-size: 16px;
    line-height: 25px;
  }
  .brewery_grid .brewery_col {
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }
  #voting_progressbar li {
    font-size: 16px;
  }
  #voting_progressbar {
    margin: 0;
    margin-bottom: 30px;
  }
  .voting_banner h1.voting_banner_heading {
    font-size: 40px;
  }
  .voting_banner p.voting_banner_subheading,
  .page-template-template-registration .banner_start_voting.text-center p {
    font-size: 28px;
  }
  .voting-motal-title-section h2 {
    font-size: 30px;
  }
  .voting-motal-title-section p {
    font-size: 18px;
  }
  .voting-modal-start-section h3 {
    font-size: 24px;
  }
  .registration_link a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .brewery_sec .brewery_address a.mobile_link {
    display: block;
  }
  .brewery_sec .regions_post .brewery_more_info {
    display: none;
  }
  .brewery_sec .regions_post {
    justify-content: flex-start !important;
  }
  .brewery_sec .regions_post .brewery_address {
    flex: 0 0 60%;
    max-width: 60%;
    margin-left: 17px !important;
  }
  div#serch_fav_brewery .seacrh_form_fourth_sec a.can_not_find_beer {
    display: block;
    text-align: center;
  }
  .header-inner a.header-branding {
    max-width: 80px;
  }
  .brewery_grid .brewery_col,
  .brewery_inner_section .brewery_col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  div#serch_fav_brewery .form-group .seacrh_form_third_sec {
    flex: 0 0 100%;
    text-align: center;
    margin-top: 10px;
  }
  .voting_banner h1.voting_banner_heading {
    font-size: 35px;
  }
  .voting_banner p.voting_banner_subheading,
  .page-template-template-registration .banner_start_voting.text-center p {
    font-size: 26px;
  }
  .voting-modal-option ul li {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 550px) {
  .home_about_section h2 {
    font-size: 25px;
  }
  .home_about_section p {
    font-size: 16px;
    line-height: 32px;
  }
  .brewery_grid .brewery_col,
  .brewery_inner_section .brewery_col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #voting_progressbar li {
    width: 100%;
    margin-bottom: 20px;
  }
  #voting_progressbar li:after {
    left: 0;
    top: -53px;
    width: 1px;
    height: 100%;
    right: 0;
    margin: -1px auto;
    bottom: 0;
  }
  .voting_banner h1.voting_banner_heading {
    font-size: 30px;
  }
  .voting_banner p.voting_banner_subheading,
  .page-template-template-registration .banner_start_voting.text-center p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 567px) {
  .google-facebook-login {
    text-align: center !important;
    display: block !important;
    margin-top: 8px !important;
  }
  div#gSignInWrapper {
    width: 252px !important;
    margin: 13px auto 0 !important;
  }
}
@media only screen and (max-width: 480px) {
  .map_popup_content h2 {
    font-size: 19px !important;
    margin-bottom: 8px !important;
  }
  div#serch_fav_brewery .form-group .seacrh_form_first_sec {
    flex: 0 0 100%;
  }
  div#serch_fav_brewery .form-group .seacrh_form_second_sec {
    flex: 0 0 100%;
  }
  #serch_fav_brewery .form-group input#submit_brewery_filter {
    width: 100%;
    margin-top: 11px;
  }
  button.change_brawery {
    margin: 0;
    width: 100%;
    margin-top: 9px;
  }
  span.can_not_find_beer_sec a {
    font-size: 14px;
    width: 100%;
    display: block;
  }
  div#serch_fav_beer .form-group .seacrh_form_second_sec_ {
    flex: 0 0 100%;
    margin-top: 10px;
  }
  div#serch_fav_beer .form-group .seacrh_form_second_sec {
    flex: 0 0 100%;
  }
  input#submit_beer_filter {
    width: 100%;
    margin-top: 0px;
  }
  div#serch_fav_beer .form-group .seacrh_form_first_sec {
    flex: 0 0 100%;
  }
  div#serch_fav_beer .form-group {
    display: flex;
    flex-direction: row !important;
  }
  .add_nominate_section .seleceted_beers_can {
    border: none;
    padding: 0;
  }
  .add_nominate_section .add_nominate_section_inner {
    border: 1px solid #e6e6e6;
    padding: 20px 14px;
  }
  .add_nominate_section .selected_beers_can_row h4 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
  }
  .selected_beers_can_row .beername span {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
  }
  .selected_beers_can_col-order h2 {
    font-size: 14px;
    font-weight: 600;
  }
  .seclect_beer_section {
    padding: 20px;
  }
}

.page-id-10399 section.main_banner .buttonvote {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
}

.page-id-10399 section.main_banner {
  padding-bottom: 90px;
}

@media (max-width: 1440px) {
  .page-id-10399 section.main_banner {
    padding-bottom: 55px;
  }
  .page-id-10399 section.main_banner {
    padding-bottom: 55px;
    padding-top: 35% !important;
    height: auto;
  }
}
@media (max-width: 992px) {
  .page-id-10399 section.main_banner {
    padding-bottom: 165px;
  }
}

@media (max-width: 767px) {
  .page-id-10399 section.main_banner .buttonvote {
    bottom: auto;
    top: 100%;
  }
  .sale-text-btn {
    display: block !important;
    padding: 0px 10px 20px;
    text-align: center;
  }
}

/* Congratulations popup css */

.sale-text-btn {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}
.sale-text-btn .sale-text {
  font-size: 18px;
  line-height: 48px;
  color: #0c426d;
}
.sale-text-btn .btn-sale {
  border: 1px solid #c31627;
  background: #c31627;
  color: #ffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 18px;
}

/* css today  */
.brewery-login-subtitle {
  color: #212529;
  font-size: 18px;
  margin-top: 6px !important;
  max-width: 500px;
  margin: auto;
}
.brewery-login-card {
  max-width: 1100px;
  width: 100%;
  padding: 60px 80px !important;
  border: unset;
  box-shadow: 0px 30px 40px 0px #00000012 !important;
}
section.voting_banner {
  padding: 15px;
}
/* Card */
form#brewery-login-form {
  line-height: 40px;
}
form#brewery-login-form input[type="password"],
#brewery_email ,input#brewery_password  {
  height: 60px;
  border: 1px solid #0000001a;
}

button.btn.w-100.brewery-login-btn {
  color: #fff;
}

.brewery-login-title {
    color: #084872;
    font-weight: 600;
    font-size: 50px;
}

/* Login Button */
.brewery-login-btn {
  background-color: #c31627;
  color: #084872;
  font-weight: bold;
  border: none;
  padding: 16px 0;
  font-size: 20px;
}

.brewery-login-btn:hover {
  background-color: #a60d26;
  color: #fff;
}

.brewery-login-btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(195, 22, 39, 0.35);
}

/* Links */
.forgot-password-link {
  color: #084872;
  text-decoration: none;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

.register-link {
  color: #c31627;
  font-weight: 500;
  text-decoration: none;
}

.register-link:hover {
  text-decoration: underline;
}
p#login-message {
  font-size: 18px;
  font-weight: 500;
}

/* ------ */

#brewery-login-form input {
  font-size: 18px !important;
  color: #212529 !important;
}
#brewery-login-form .input-group {
  position: relative;
}
#brewery-login-form .input-group .btn {
  border: unset;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

#brewery-login-form .input-group .btn i {
  font-size: 29px;
  color: #212529;
}
#brewery-login-form .forgot-password-link {
  font-size: 22px;
  color: #212529;
  margin-top: 16px !important;
  display: inline-block;
}
#brewery-login-form input[type="email"],
#brewery-login-form input[type="text"] {
  margin-bottom: 20px;
}
.card-description {
    margin-bottom: 43px !important;
}
#brewery-login-form input[type="checkbox"]:checked::before {
    top: -6px;
    left: 2px;
}
header{
    box-shadow: 0px 16px 44px 0px #00000012;
    padding: 6px 0;
}
.login-sec {
    padding: 50px 0;
    padding-bottom: 100px;
}
input#remember {
    height: 20px;
    width: 20px;
    border-radius: 2px;
}
#brewery-login-form .form-check:has(#remember){
    padding:0;
}
#brewery-login-form input:focus{
    box-shadow:unset;
    outline:unset;
}
.brewery-login-btn:hover {
    background-color: #084872;
}
#brewery-login-form input#brewery_password {
    margin-bottom: 0 !important;
}
#brewery-login-form .btn-outline-secondary:hover{
    background-color: transparent !important;
}
.btn-outline-secondary.focus, .btn-outline-secondary:focus {
    box-shadow: unset;
}
.ad_beer_button a {
    font-size: 18px;
    font-weight: 400;
    padding: 14px 33px !important;
}
.ad_beer_button a:hover {
    font-weight: 400;
    background-color: #084872;
}
/* responsive */
@media(min-width:1600px){
.login-sec {
    padding: 80px 0;
    padding-bottom: 120px;
}
}
@media (max-width: 1599px) {
  .brewery-login-card {
    max-width: 900px;
    padding: 40px 70px !important;
  }
  form#brewery-login-form input[type="password"],
  #brewery_email ,input#brewery_password  {
    height: 52px;
  }
  #brewery-login-form input {
    font-size: 15px !important;
  }
  .brewery-login-btn {
    padding: 12px 0;
    font-size: 18px;
  }
  #brewery-login-form .input-group .btn i {
    font-size: 22px;
  }
  .forgot-password-link {
    font-size: 18px;
    margin-top: 12px;
    display: inline-block;
    color: #212529;
  }
  .brewery-login-title {
    font-size: 35px;
}
.card-description {
    margin-bottom: 26px !important;
}
.ad_beer_button a {
    font-size: 16px;
    padding: 13px 26px !important;
}
}
@media(max-width:991px){
    .brewery-login-card {
    max-width: 100%;
    margin: 0 15px;
}
}
@media(max-width:575px){
.brewery-login-title {
    font-size: 23px;
}
.brewery-login-subtitle {
    font-size: 13px;
    margin-top: 6px !important;
    line-height: 1.5;
}
.brewery-login-btn {
    padding: 10px 0;
    font-size: 15px;
}
#brewery-login-form .input-group .btn i {
    font-size: 17px;
}
.forgot-password-link {
    font-size: 16px;
    margin-top: 11px;;
}
.brewery-login-card {
    padding: 10px 20px !important;
    padding-bottom: 40px !important;
}
.login-sec {
    padding: 50px 0;
    padding-bottom: 60px;
}
}
.pro_Sec h3 {
    font-weight: 600;
    margin: 24px 0;
    font-size: 24px;
}

.pro_Sec {
    margin: 40px 0;
}
