.btn-default {
  color: white;
  background-color: #f27a24;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 0.75em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}

.btn-default:hover .icon {
  padding-left: 1em;
}

.btn-default:hover .icon-arrow {
  left: 10px;
}

.btn-default .icon {
  display: inline-block;
  width: 2em;
  box-sizing: border-box;
  padding-left: 0em;
  transition: padding 0.5s;
}

.btn-default .icon-arrow {
  background: #fff;
  height: 1px;
  width: 15px;
  margin: 0 auto;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  top: -1px;
  left: 3px;
  transition: all 0.5s;
}

.btn-default .icon-arrow:before,
.btn-default .icon-arrow:after {
  content: "";
  background: #fff;
  position: absolute;
  height: 1px;
  width: 6px;
}

.btn-default .icon-arrow:before {
  right: -1px;
  bottom: -2px;
  transform: rotate(-45deg);
}

.btn-default .icon-arrow:after {
  right: -1px;
  top: -2px;
  transform: rotate(45deg);
}

.btn-link {
  color: #f27a24;
}

.btn-primary {
  background-color: #1676a0;
  border-color: #1676a0;
  color: #fff;
}

.btn-outline-primary {
  border-color: #1676a0;
  color: #1676a0;
}

.btn-outline-primary:hover {
  background-color: #1676a0;
  border-color: #1676a0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #363433;
  background-color: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

.wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.wrapper h1 {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .row {
    display: flex;
    justify-content: space-between;
  }

  .row .col-6 {
    flex: 0 1 45%;
  }
}

.text-center {
  text-align: center;
}

#page-home {
  margin-bottom: 5em;
}

h1,
.h1 {
  font-size: 2.4em;
  line-height: 1.3;
}

h2,
.h2 {
  font-size: 2em;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 1.8em;
}

h4,
.h4 {
  font-size: 1.4em;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 1.2em;
  font-weight: 600;
}

a {
  color: #f27a24;
}

@media only screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 2em;
  }

  h2,
  .h2 {
    font-size: 1.75em;
  }

  h3,
  .h3 {
    font-size: 1.5em;
  }

  h4,
  .h4 {
    font-size: 1.25em;
  }

  h5,
  .h5 {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 480px) {
  h1,
  .h1 {
    font-size: 1.75em;
  }

  h2,
  .h2 {
    font-size: 1.5em;
  }

  h3,
  .h3 {
    font-size: 1.25em;
  }

  h4,
  .h4 {
    font-size: 1.1em;
  }

  h5,
  .h5 {
    font-size: 1em;
  }
}

.section-footer {
  color: #999;
  background-color: #333333;
  padding: 3em 5% 1em;
  position: relative;
  overflow: hidden;
}

.section-footer a {
  color: #999;
  text-decoration: none;
  transition: all 0.5s ease;
}

.section-footer a:hover {
  color: #f1a835;
}

.section-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-footer h4 {
  color: #ffff;
  border-bottom: 1px solid #555;
  padding-bottom: 1em;
}

.section-footer h4:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  border-left: 1px solid #555;
  border-right: 1px solid #555;
  transform: skew(-35deg);
  margin: 2.3em 0 0 1em;
}

.section-footer .list-footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.section-footer .list-footer > li {
  flex-basis: 30%;
}

.section-footer .list-footer-items li {
  margin-bottom: 1em;
}

.section-footer .list-footer-items li .icon {
  position: absolute;
  color: #fec063;
  left: 0;
}

.section-footer .list-footer-items.list-contact {
  padding-left: 30px;
  position: relative;
}

.section-footer .list-media-icons {
  display: flex;
}

.section-footer .list-media-icons li {
  margin-right: 1em;
}

.section-footer .list-media-icons li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 1.1em;
  border: 1px solid #999;
  border-radius: 50%;
}

.section-footer .list-media-icons li a:hover {
  background-color: #f1a835;
  border-color: #f1a835;
  color: #fff;
}

.section-footer .rspo-app {
  display: flex;
  margin-bottom: 3em;
}

.section-footer .rspo-app li {
  margin-right: 2em;
}

.section-footer .rspo-app li a img {
  opacity: 0.7;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: 0.5s all;
}

.section-footer .rspo-app li a:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.section-footer .footer-copyright {
  border-top: 1px solid #555;
  font-size: 0.8em;
  overflow: hidden;
  padding: 2em 0;
  margin-top: 2em;
}

.section-footer .footer-copyright p {
  float: left;
  margin: 0;
}

.section-footer .footer-copyright .link-sitemap {
  float: right;
}

.section-footer .footer-copyright .link-sitemap li {
  float: left;
  margin-left: 2em;
}

@media only screen and (max-width: 768px) {
  .section-footer .list-footer > li {
    flex-basis: 48%;
  }

  .section-footer .list-footer > li:last-child {
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .section-footer .list-footer > li {
    flex-basis: 100%;
    margin-bottom: 2em;
  }

  .section-footer .list-footer > li:last-child {
    flex-basis: 100%;
  }
}

.label-status {
  font-weight: 600;
  font-size: 0.8em;
}

.label-ongoing {
  color: #1676a0;
}

.label-reject {
  color: #e86f6c;
}

.label-withdraw {
  color: #a38f83;
}

.label-completed {
  color: #2ba048;
}

.rspo-graph {
  margin: 2em 0;
}

.rspo-graph img {
  max-width: 100%;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

.breadcrumb ul li {
  font-size: 0.9em;
  font-weight: 600;
}

.breadcrumb ul li:before {
  content: ">";
  display: inline-block;
  margin: 0 0.5em;
  color: #808085;
}

.breadcrumb ul li:first-child:before {
  display: none;
}

.breadcrumb ul li a {
  color: #808085;
  font-weight: 500;
}

.no-result {
  padding: 15vh 0;
}

.no-result .h4 {
  margin-bottom: 2em;
}

.no-result img {
  max-width: 150px;
  opacity: 0.5;
}

.section-admin-preview {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #333333;
  padding: 1em;
}

.section-admin-preview button {
  font-size: 1em;
  padding: 0.75em 1.5em;
  border: 0 none;
  float: right;
  margin-left: 1em;
}

.section-admin-preview .btn-publish {
  background-color: #f27a24;
  color: #fff;
}

.section-admin-preview .btn-cancel {
  color: #808085;
}

.preview {
  padding-top: 100px;
}

label.error {
  font-size: 0.8em;
  color: #e86f6c;
}

.resolution-list {
  color: #808085;
  list-style: none;
  padding: 0;
}

.resolution-list .number {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.resolution-list .label {
  font-weight: 600;
  font-size: 0.85em;
}

.resolution-list .total {
  font-size: 1.3em;
}

.resolution-list .total .number {
  color: #f27a24;
}

.resolution-list .total .label {
  color: #363433;
}

.resolution-list .adopted .number {
  color: #f1a835;
}

.resolution-list .adopted ul {
  font-size: 0.8em;
  list-style: none;
  padding: 1em 1em 0.5em;
  margin: 0 0 0 1em;
  border: 1px solid #ddd;
  font-weight: bold;
}

.resolution-list .adopted ul .label {
  max-width: none;
}

.resolution-list .adopted ul .ongoing .number {
  color: #1676a0;
}

.resolution-list .adopted ul .completed .number {
  color: #2ba048;
}

.resolution-list .adopted ul li {
  margin-bottom: 0.3em;
  display: flex;
  align-items: center;
}

.resolution-list .rejected .number {
  color: #e86f6c;
}

.resolution-list .withdrawn .number {
  color: #a38f83;
}

.resolution-list .ongoing .number {
  color: #1676a0;
}

.resolution-list .completed .number {
  color: #2ba048;
}

.total-resolutions {
  margin: 0 auto;
  padding: 2em 0;
  justify-content: center;
  line-height: 1.2;
}

.total-resolutions > li .number {
  font-size: 1.6em;
  line-height: 1;
}

.total-resolutions > li:first-child {
  border: 0 none;
}

.total-resolutions > li ul .number {
  font-size: 1.2em;
  min-width: 1.5em;
  text-align: right;
  margin-right: 0.3em;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .total-resolutions {
    display: flex;
  }

  .total-resolutions > li {
    padding: 0 20px;
    border-left: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .total-resolutions > li > .label {
    margin-top: 5px;
  }

  .total-resolutions > li.adopted {
    padding-right: 10em;
    position: relative;
  }

  .total-resolutions > li.adopted ul {
    position: absolute;
    right: 20px;
    top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .total-resolutions {
    max-width: 300px;
  }

  .total-resolutions > li {
    margin: 0;
    padding: 1em 0.2em;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
  }

  .total-resolutions > li .number {
    margin-right: 0.2em;
  }
}

.year-resolutions {
  margin: 0 0 2.5em;
  font-size: 1.1em;
}

.year-resolutions li {
  margin-bottom: 0.25em;
}

.year-resolutions li ul {
  font-size: 0.85em;
  list-style: none;
  padding: 0.5em 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.year-resolutions li ul li {
  margin-bottom: 0.25em;
}

.year-resolutions .number {
  min-width: 1.5rem;
  margin-right: 0.25rem;
  text-align: right;
  display: inline-block;
}

.year-resolutions .label {
  display: inline-block;
}

.year-resolutions .total {
  margin-bottom: 0.5em;
}

.year-resolutions .total .number {
  font-size: 1.3em;
}

.year-selection {
  overflow-x: auto;
  max-width: 100%;
  display: flex;
  margin: 5em 0 2em;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.year-selection::-webkit-scrollbar {
  display: none;
}

.year-selection .year-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.year-selection .year-list > li {
  padding: 1em;
  border-right: 1px solid #ddd;
  width: 3.5em;
  background-color: #fff;
  transition: all 0.5s;
}

.year-selection .year-list > li:hover {
  background-color: #f1f1f2;
  cursor: pointer;
}

.year-selection .year-list > li:first-child {
  border-left: 1px solid #ddd;
}

.year-selection .year-list .year {
  color: #808085;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
}

.year-selection .year-list .year-content {
  display: none;
  width: 200px;
}

.year-selection .year-list .extend {
  width: 200px;
  padding: 1em 1.5em;
}

.year-selection .year-list .extend:hover {
  background-color: transparent;
  cursor: auto;
}

.year-selection .year-list .extend .year {
  color: #363433;
  font-weight: bold;
  font-size: 1.8em;
}

.year-selection .year-list .extend .year-content {
  display: block;
}

.year-selection .year-list .extend .year-content .ga-no {
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 2em;
  color: #808085;
}

.scroll-to-view {
  text-align: center;
  font-size: 0.9em;
  color: #808085;
  margin-bottom: 4em;
}

.year-selection .container {
  overflow: hidden;
  padding: 10px;
  width: 100%;
}

.year-selection .card-slider {
  width: 280px;
  position: relative;
  overflow: visible;
  margin: 0 auto;
}

.year-selection .card-slider_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.year-selection .card-slider_card {
  width: 280px;
  display: inline-block;
  position: relative;
  transform: scale(0.8) translateX(0px);
  -webkit-transform-origin-x: left;
  transform-origin: left;
  z-index: 1;
  flex-shrink: 0;
  margin-right: -60%;
}

.year-selection .card-slider_card.active-out {
  -webkit-animation: activeOutLeft 0.5s ease-in-out;
          animation: activeOutLeft 0.5s ease-in-out;
}

.active-in ~ .year-selection .card-slider_card.active-out {
  -webkit-animation: activeOutRight 0.5s ease-in-out;
          animation: activeOutRight 0.5s ease-in-out;
}

.active ~ .year-selection .card-slider_card {
  margin-left: -60%;
  margin-right: 0;
}

.year-selection .card-slider_card.active {
  transform: scale(1);
  z-index: 3;
  margin: 0;
}

.year-selection .card-slider_card.active .panel {
  background-color: #fff;
  opacity: 1;
  cursor: auto;
}

.year-selection .card-slider_card.active .year {
  transform: scale(1);
  color: #363433;
}

.year-selection .card-slider_card.active .year-content {
  opacity: 1;
}

.year-selection .card-slider_card.active .btn-default {
  visibility: visible;
  text-align: center;
  display: block;
}

.year-selection .card-slider_card.active-in {
  -webkit-animation: activeInLeft 0.5s ease-in-out;
          animation: activeInLeft 0.5s ease-in-out;
}

.active-out ~ .year-selection .card-slider_card.active-in {
  -webkit-animation: activeInRight 0.5s ease-in-out;
          animation: activeInRight 0.5s ease-in-out;
}

.year-selection .panel {
  background-color: #808085;
  padding: 1.5em 1.5em 2em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  font-size: 1.1em;
}

.year-selection .panel:hover {
  background: #363433;
  cursor: pointer;
}

.year-selection .panel .year {
  color: #f1f1f2;
  font-weight: bold;
  font-size: 1.8em;
  transform: scale(0.8);
  transform-origin: top left;
  transition: all 0.5s;
}

.year-selection .panel .year-content {
  opacity: 0;
  transition: opacity 0.5s;
}

.year-selection .panel .year-content .ga-no {
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 2em;
  color: #808085;
}

.year-selection .panel .btn-default {
  visibility: hidden;
}

.year-selection .card-slider-navigation {
  text-align: center;
  padding: 3em 0;
}

.year-selection .card-slider-navigation button {
  background-color: transparent;
  border: 0 none;
  font-size: 2em;
  margin: 0 2em;
  outline: none;
  cursor: pointer;
  color: #808085;
}

.year-selection .card-slider-navigation button:hover {
  color: #f27a24;
}

@-webkit-keyframes activeInRight {
  0% {
    transform: scale(0.8);
    z-index: 2;
  }

  50% {
    transform: translateX(10%) scale(0.9);
    z-index: 3;
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes activeInRight {
  0% {
    transform: scale(0.8);
    z-index: 2;
  }

  50% {
    transform: translateX(10%) scale(0.9);
    z-index: 3;
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@-webkit-keyframes activeOutLeft {
  0% {
    transform: scale(1);
    z-index: 3;
  }

  50% {
    transform: translateX(-10%) scale(0.9);
    z-index: 2;
  }

  100% {
    transform: translateX(0) scale(0.8);
  }
}

@keyframes activeOutLeft {
  0% {
    transform: scale(1);
    z-index: 3;
  }

  50% {
    transform: translateX(-10%) scale(0.9);
    z-index: 2;
  }

  100% {
    transform: translateX(0) scale(0.8);
  }
}

@-webkit-keyframes activeInLeft {
  0% {
    transform: scale(0.8);
    z-index: 2;
  }

  50% {
    transform: translateX(-10%) scale(0.9);
    z-index: 3;
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes activeInLeft {
  0% {
    transform: scale(0.8);
    z-index: 2;
  }

  50% {
    transform: translateX(-10%) scale(0.9);
    z-index: 3;
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@-webkit-keyframes activeOutRight {
  0% {
    transform: scale(1);
    z-index: 3;
  }

  50% {
    transform: translateX(10%) scale(0.9);
    z-index: 2;
  }

  100% {
    transform: translateX(0) scale(0.8);
  }
}

@keyframes activeOutRight {
  0% {
    transform: scale(1);
    z-index: 3;
  }

  50% {
    transform: translateX(10%) scale(0.9);
    z-index: 2;
  }

  100% {
    transform: translateX(0) scale(0.8);
  }
}

#page-resolution-year.search-resolution .search-key {
  text-align: center;
}

#page-resolution-year.search-resolution .search-bar {
  margin: 3em;
}

#page-resolutions .search-bar,
#page-resolution-year .search-bar {
  margin-top: 1em;
}

#page-resolutions .search-bar .input-group,
#page-resolution-year .search-bar .input-group {
  display: flex;
  margin: auto;
  width: 500px;
}

#page-resolutions .search-bar input[type="text"],
#page-resolutions .search-bar .input-group-append button,
#page-resolution-year .search-bar input[type="text"],
#page-resolution-year .search-bar .input-group-append button {
  padding: 0.75em 1em;
  font-size: inherit;
  font-family: inherit;
}

#page-resolutions .search-bar input[type="text"],
#page-resolution-year .search-bar input[type="text"] {
  border: 1px solid #ccc;
  flex: 1;
}

#page-resolutions .search-bar input[type="text"]:focus,
#page-resolution-year .search-bar input[type="text"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#page-resolutions .search-bar .input-group-append button,
#page-resolution-year .search-bar .input-group-append button {
  color: #fff;
  background-color: #808085;
  border: 1px solid #808085;
}

@media screen and (max-width: 767px) {
  #page-resolutions .search-bar .input-group,
  #page-resolution-year .search-bar .input-group {
    width: 100%;
    max-width: 300px;
  }
}

.nav-year {
  margin: auto;
  text-align: center;
  max-width: 800px;
}

.nav-year .nav-link {
  text-decoration: none;
  color: #363433;
}

.nav-year ul {
  display: flex;
  list-style-type: none;
  padding: 2em 0 1em;
  margin: 0;
  justify-content: space-around;
}

.nav-year ul li {
  opacity: 0.5;
  font-weight: bold;
  flex: 1;
}

.nav-year ul li .year {
  font-size: 1.6em;
  line-height: 1;
}

.nav-year ul li.selected {
  opacity: 1;
  font-size: 1.2em;
  margin-top: -0.5em;
}

.nav-year ul li.selected .year {
  color: #f27a24;
}

.nav-year ul li:hover {
  opacity: 1;
}

.nav-year ul li:hover .year {
  color: #f27a24;
}

@media only screen and (max-width: 480px) {
  .nav-year {
    font-size: 0.8em;
  }

  .nav-year ul li:first-child,
  .nav-year ul li:last-child {
    display: none;
  }
}

.card-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3em 0 0;
}

.card-list:after {
  content: "";
  flex-basis: 30%;
}

.card-list > li {
  flex-basis: 30%;
  margin-bottom: 5%;
}

@media only screen and (max-width: 960px) {
  .card-list:after {
    flex-basis: 48%;
  }

  .card-list > li {
    flex-basis: 48%;
    margin-bottom: 5%;
  }
}

@media only screen and (max-width: 480px) {
  .card-list {
    display: block;
  }
}

.flip-card {
  background-color: transparent;
  height: 380px;
  perspective: 1000px;
}

.flip-card .flip-card-inner {
  position: relative;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0;
  border: 1px solid #ddd;
}

.flip-card .flip-card-front,
.flip-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.5em;
  box-sizing: border-box;
  box-shadow: 0 0 5px #ddd;
}

.flip-card .flip-card-back {
  background-color: #363433;
  color: white;
  transform: rotateY(180deg);
}

.flip-card .flip-card-back .card-body {
  margin: auto;
}

.flip-card .flip-card-front .card-header {
  margin-bottom: 1em;
  min-height: 5em;
}

.flip-card .flip-card-front .ga-number {
  margin: 0px;
  text-transform: uppercase;
}

.flip-card .flip-card-front .no-vote {
  color: #808085;
  font-style: italic;
}

.flip-card .flip-card-front .card-footer {
  border-top: 1px solid #ddd;
}

@media only screen and (min-width: 769px) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
}

.card-footer {
  margin: auto 0 0;
  padding: 0.5em 0;
}

.card-footer li {
  margin: 0 0.5em;
  display: flex;
  align-items: center;
}

.vote-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vote-numbers .icon {
  display: inline-block;
  border: 1px solid;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 0.75em;
  text-align: center;
}

.vote-numbers .number {
  color: #808085;
  font-weight: 600;
  margin-left: 0.3em;
}

.vote-numbers .vote-for {
  color: #2ba048;
}

.vote-numbers .vote-against {
  color: #e86f6c;
}

.vote-numbers .vote-abstain {
  color: #f1a835;
}

.vote-numbers .vote-spoilt {
  color: #a38f83;
}

.legend {
  font-weight: 500;
  margin-bottom: 3em;
}

.legend li {
  margin: 0 1em;
}

.legend li .label {
  margin-left: 0.5em;
}

@media only screen and (max-width: 480px) {
  .legend li {
    margin: 0 0.5em;
  }
}

#page-resolution-year .total-resolutions {
  border-top: 1px solid #ddd;
}

.graph-sector {
  margin-bottom: 4em;
}

.graph-sector table {
  font-size: 0.9em;
  width: 100%;
}

.graph-sector table th {
  text-align: left;
}

.graph-sector table td {
  padding: 0.4em 0;
}

.graph-sector table .label {
  width: 6rem;
}

.graph-sector table .weightage {
  width: 6rem;
  padding-left: 10px;
}

.graph-sector table .bar {
  background-color: #e6e6e7;
  display: flex;
}

.graph-sector table .bar > div {
  height: 1em;
}

.graph-sector table .bar > div.bar-for {
  background-color: #2ba048;
}

.graph-sector table .bar > div.bar-against {
  background-color: #e86f6c;
}

.graph-sector table .bar > div.bar-abstain {
  background-color: #f1a835;
}

.graph-sector table .bar > div.bar-spoilt {
  background-color: #a38f83;
}

.graph-overall {
  width: 100%;
  margin-bottom: 4em;
}

.graph-overall tr {
  min-height: 3.5em;
}

.graph-overall tr td {
  padding: 0;
}

.graph-overall tr .label {
  font-weight: 600;
  text-transform: uppercase;
  width: 6rem;
  font-size: 1.1em;
  color: #808085;
}

.graph-overall tr .bar {
  background-color: #e6e6e7;
}

.graph-overall tr .bar .status {
  height: 1.5em;
}

.graph-overall tr .number {
  width: 6rem;
  font-weight: bold;
  font-size: 2em;
  padding-left: 10px;
}

.graph-overall tr.bar-for .number {
  color: #2ba048;
}

.graph-overall tr.bar-for .status {
  background-color: #2ba048;
}

.graph-overall tr.bar-against .number {
  color: #e86f6c;
}

.graph-overall tr.bar-against .status {
  background-color: #e86f6c;
}

.graph-overall tr.bar-abstain .number {
  color: #f1a835;
}

.graph-overall tr.bar-abstain .status {
  background-color: #f1a835;
}

.graph-overall tr.bar-spoilt .number {
  color: #a38f83;
}

.graph-overall tr.bar-spoilt .status {
  background-color: #a38f83;
}

.graph-overall tr.total-vote .label {
  text-align: right;
}

.graph-overall tr.total-vote .number {
  font-size: 1.1em;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .graph-overall tr .number {
    width: 3rem;
  }
}

.no-vote {
  text-align: center;
}

.no-vote .h3 {
  opacity: 0.5;
  font-weight: bold;
}

.no-vote img {
  max-width: 160px;
  opacity: 0.2;
}

#page-resolution .section-header {
  text-align: center;
  padding: 0 0 2em 0;
  max-width: 800px;
  margin: 2em auto;
}

#page-resolution .section-header h3 {
  font-weight: 600;
  line-height: 1.5;
}

#page-resolution .section-header .label-status {
  font-size: 1em;
}

#page-resolution .list-info {
  list-style: none;
  padding: 1em 0;
  border-top: 1px solid #ddd;
}

#page-resolution .list-info li {
  margin: 1em 0;
}

#page-resolution .list-info li .label {
  font-weight: 600;
  color: #808085;
}

#page-resolution .list-info li .item {
  flex: 1;
  font-weight: 600;
}

#page-resolution .list-info li .item a {
  color: #f27a24;
}

#page-resolution .list-info li .item .doc-link {
  display: block;
  margin-bottom: 0.25em;
}

#page-resolution .section-body {
  padding: 4em 0;
}

#page-resolution .section-contact {
  border-top: 1px solid #ddd;
  padding: 4em 0;
}

#page-resolution .section-contact h4 {
  margin: 0;
}

#page-resolution .section-contact .form-container .list-info {
  border: 0 none;
  margin: 0;
  padding: 0;
}

#page-resolution .section-contact .form-container .list-info li {
  min-height: 4.5em;
  margin-bottom: 1em;
}

#page-resolution .section-contact .form-container .input-container {
  background-color: #e6e6e7;
  border: none;
  width: 100%;
  resize: none;
  outline: none;
  padding: 0.75em;
  box-sizing: border-box;
}

#page-resolution .section-contact .form-container .form-action {
  text-align: right;
  display: block;
}

@media only screen and (min-width: 481px) {
  #page-resolution .list-info li {
    display: flex;
  }

  #page-resolution .list-info li .label {
    width: 30%;
  }
}

.footer-nav {
  background-color: #e6e6e7;
  padding: 1em 0;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav ul li {
  flex: 1;
}

.footer-nav ul a {
  text-decoration: none;
  color: #808085;
}

.footer-nav ul .ga-no {
  color: #f27a24;
  font-weight: bold;
}

.footer-nav ul .label {
  color: #363433;
  font-weight: 600;
  display: inline-block;
  padding: 0 0.5em;
}

.footer-nav ul .next {
  text-align: right;
}

.footer-nav ul .current {
  text-align: center;
  line-height: 1.3;
}

.tooltip .tooltip-container {
  visibility: hidden;
  width: 30em;
  background-color: white;
  border: 1px solid #b7b7b7;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 1em;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  transform: translate(0, -50%);
  font-size: 0.9em;
  margin-left: 10px;
}

.tooltip .tooltip-container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

.tooltip .tooltip-container .graph-overall {
  margin-bottom: 0;
}

.tooltip .tooltip-container .graph-overall tr .number {
  width: 3rem;
}

.tooltip:hover .tooltip-container {
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  .footer-nav {
    font-size: 0.8em;
  }

  .tooltip .tooltip-container {
    left: -90px;
  }
}

#carousel.year-selection {
  display: block;
  overflow-x: hidden;
  padding: 2em 0;
  min-height: 470px;
}

#carousel.year-selection .container {
  margin: 50px auto;
  width: 150px;
  /*250px;*/
  height: 200px;
  /*200px;*/
  position: relative;
  padding: 0;
  overflow: visible;
}

.carousel {
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.carousel .item {
  font-size: 10px;
  display: block;
  position: absolute;
  background: #f1f1f2;
  width: 150px;
  height: 210px;
  line-height: 1;
  /* font-size: 5em; */
  text-align: left;
  /*center;*/
  padding: 1em;
  /*box-shadow: rgba(11, 37, 75, 0.01) 0px 22px 22px 0px,
      rgba(11, 37, 75, 0.02) 0px 14px 14px 0px,
      rgba(11, 37, 75, 0.02) 0px 4px 4px 0px,
      rgba(11, 37, 75, 0.02) 0px 2px 2px 0px,
      rgba(11, 37, 75, 0.04) 0px 0px 0px 1px;*/
  border: 1px solid #ddd;
  box-sizing: border-box;
  opacity: 0.5;
  transition: all 0.5s;
  cursor: pointer;
}

.carousel .item:hover {
  opacity: 1;
}

/* css move from original */

.carousel .year {
  color: #363433;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.5s;
  line-height: 1.5;
}

.carousel .year-content {
  opacity: 0;
  transition: opacity 0.5s;
}

.carousel .ga-no {
  font-weight: 600;
  font-size: 0.65em;
  margin-bottom: 2em;
  color: #808085;
}

.carousel .selected {
  opacity: 1;
  background-color: #fff;
  box-shadow: 0 0 5px #ddd;
  cursor: initial;
}

.carousel .selected .year-content {
  opacity: 1;
}

/* 
  .year-resolutions {
    margin: 0 0 2.5em;
    font-size: 1.1em;
  }
  .resolution-list {
    color: #808085;
    list-style: none;
    padding: 0;
  }
  .total {
    margin-bottom: 0.5em;
    font-size: 1.3em;
  } */

/* end here */

/* copy whole css */

.carousel .btn-default {
  display: block;
  font-size: 0.6em;
  text-align: center;
  background-color: transparent;
  color: #f27a24;
}

.carousel .btn-default:hover .icon {
  padding-left: 1em;
}

.carousel .btn-default:hover .icon-arrow {
  left: 10px;
}

.carousel .btn-default .icon {
  display: inline-block;
  width: 2em;
  box-sizing: border-box;
  padding-left: 0em;
  transition: padding 0.5s;
}

.carousel .btn-default .icon-arrow {
  background: #f27a24;
  height: 1px;
  width: 8px;
  margin: 0 auto;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  top: -1px;
  left: 3px;
  transition: all 0.5s;
}

.carousel .btn-default .icon-arrow:before,
.carousel .btn-default .icon-arrow:after {
  content: "";
  background: #f27a24;
  position: absolute;
  height: 1px;
  width: 6px;
}

.carousel .btn-default .icon-arrow:before {
  right: -1px;
  bottom: -2px;
  transform: rotate(-45deg);
}

.carousel .btn-default .icon-arrow:after {
  right: -1px;
  top: -2px;
  transform: rotate(45deg);
}

.carousel .year-resolutions {
  margin: 0 0 1.4em;
  font-size: 1.1em;
}

.carousel .year-resolutions li {
  margin-bottom: 0.5em;
}

.carousel .year-resolutions li ul {
  font-size: 0.85em;
  list-style: none;
  padding: 1em 0 0.5em;
  margin: 0.5em 0 0;
  border: 0 none;
  background-color: #f1f1f2;
}

.carousel .year-resolutions li ul li {
  margin-bottom: 0.5em;
}

.carousel .year-resolutions .number {
  min-width: 1rem;
  margin-right: 0.25rem;
  text-align: right;
  display: inline-block;
}

.carousel .year-resolutions .label {
  display: inline-block;
}

.carousel .year-resolutions .total {
  margin-bottom: 0.5em;
}

.carousel .year-resolutions .total .number {
  font-size: 1.3em;
}

