:root {
    --fc-small-font-size: .85em;
    --fc-page-bg-color: #fff;
    --fc-neutral-bg-color: rgba(208, 208, 208, 0.3);
    --fc-neutral-text-color: #808080;
    --fc-border-color: #ddd;
  
    --fc-button-text-color: #fff;
    --fc-button-bg-color: #2C3E50;
    --fc-button-border-color: #2C3E50;
    --fc-button-hover-bg-color: #1e2b37;
    --fc-button-hover-border-color: #1a252f;
    --fc-button-active-bg-color: #1a252f;
    --fc-button-active-border-color: #151e27;
  
    --fc-event-bg-color: #3788d8;
    --fc-event-border-color: #3788d8;
    --fc-event-text-color: #fff;
    --fc-event-selected-overlay-color: rgba(0, 0, 0, 0.25);
  
    --fc-more-link-bg-color: #d0d0d0;
    --fc-more-link-text-color: inherit;
  
    --fc-event-resizer-thickness: 8px;
    --fc-event-resizer-dot-total-width: 8px;
    --fc-event-resizer-dot-border-width: 1px;
  
    --fc-non-business-color: rgba(215, 215, 215, 0.3);
    --fc-bg-event-color: rgb(143, 223, 130);
    --fc-bg-event-opacity: 0.3;
    --fc-highlight-color: rgba(188, 232, 241, 0.3);
    --fc-today-bg-color: rgba(255, 220, 40, 0.15);
    --fc-now-indicator-color: red;
}

#page-overlay {
  z-index: 11;
  display: none;
}

.overlay.calendar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.survey {
  position: fixed;
  z-index: 12;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  width: 100%;
  max-width: 1200px;
  display: none;
}
.survey.survey-results {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  display: block;
  max-width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
.survey.survey-results.survey-results-title {
  margin-bottom: 0;
}
@media screen and (max-width: 1399px) {
  .survey {
    max-width: 900px;
  }
  .survey.survey-results {
    max-width: 100%;
  }
}
.survey p {
  font-size: 24px;
  color: #142934;
  font-weight: 600;
}
.survey.event-modal p {
  font-size: 24px;
  color: #142934;
  font-weight: 400;
}
.survey.event-modal img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
.survey p:first-child {
  font-size: 30px;
  margin-bottom: 30px;
  margin-right: 50px;
}
.survey.survey-results p:first-child {
  font-size: 24px;
  margin-bottom: 30px;
  margin-right: 50px;
}
.survey.survey-results a p {
  font-size: 24px !important;
  margin-bottom: 0px !important;
  margin-right: 0px !important;
  color: #e93847 !important; 
}
@media screen and (max-width: 991px) {
  .survey {
    max-width: 90%;
  }
  .survey p {
    font-size: 20px;
  }
  .survey p:first-child {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .survey {
    padding: 30px 15px;
    max-width: 95%;
  }
}
.survey .close {
  width: 28px;
  height: 28px;
  border: 1px solid #1a3655;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 30px;
  right: 45px;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .survey .close {
      right: 30px;
  }
}
.survey .close img {
  width: 10px;
}
.survey .survey-bottom {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .survey .survey-bottom {
    display: grid;
    gap: 30px;
  }
}
.survey .survey-bottom button, .survey .survey-bottom span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
}
.survey .survey-bottom button {
  background-color: #e93847;
  border: none;
}
.survey .survey-bottom #survey-vote:disabled {
  opacity: 0.5;
  cursor: auto;
}
.survey .survey-bottom span {
  background-color: #417c9b;
  cursor: pointer;
}
.survey .survey-bottom .survey-options {
  margin-right: 30px;
}
.survey .survey-bottom .survey-options li {
  margin-top: 10px;
}
.survey .survey-bottom .survey-options .form-control {
  font-family: "OpenSans";
  font-size: 20px;
  font-weight: 600;
  color: #142934;
  display: grid;
  grid-template-columns: 15px auto;
  gap: 15px;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .survey .survey-bottom .survey-options .form-control {
    font-size: 17px;
  }
}
.survey .survey-bottom .survey-options input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  margin: 0;
  font: inherit;
  color: #e93847;
  width: 15px;
  height: 15px;
  border: 1px solid #BCBCBC;
  border-radius: 50%;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  display: grid;
  place-content: center;
  cursor: pointer;
}
.survey .survey-bottom .survey-options input[type=radio]::before {
  content: url("../images/check.png");
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms -webkit-transform ease-in-out;
  -o-transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
}
.survey .survey-bottom .survey-options input[type=radio]:checked::before {
  -webkit-transform: scale(1) translateY(-5px);
      -ms-transform: scale(1) translateY(-5px);
          transform: scale(1) translateY(-5px);
}
@media screen and (max-width: 350px) {
  .survey .survey-bottom .survey-btns {
    display: grid;
    gap: 20px;
  }
  .survey .survey-bottom .survey-btns a {
    margin-right: 0;
  }
  .survey .survey-bottom .survey-btns a, .survey .survey-bottom .survey-btns span {
    text-align: center;
  }
}
.survey .survey-bottom .survey-results li {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.survey .survey-bottom .survey-results li span {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  background-color: #fff;
  padding: 0;
  min-width: 50px;
  cursor: auto;
  min-width: 100px;
  margin-right: 10px;
}
.survey .survey-bottom .survey-results li .bar {
  height: 15px;
  width: 200px;
  margin: 0 15px;
}
.survey .survey-bottom .survey-results li .bar .bar-result {
  height: 100%;
  background-color: #e93847;
  border: 1px solid #395733;
}
.survey .survey-bottom .survey-results li p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .survey .survey-bottom .survey-results li .bar {
    display: none;
  }
  .survey .survey-bottom .survey-results li p {
    margin-left: 10px;
  }
}
@media screen and (max-width: 575px) {
  .survey .survey-bottom .survey-results li p, .survey .survey-bottom .survey-results li span {
    font-size: 17px;
  }
}
.survey .survey-bottom .survey-results .survey-checked::after {
  content: url("../images/check.png");
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-left: 15px;
}

.survey p {
  font-size: 24px;
  color: #142934;
  font-weight: 600;
}

.survey.event-modal p {
  font-size: 18px;
  color: #263E14;
  font-weight: 400;
}

.survey.event-modal p.event-title {
  font-size: 30px;
  margin-bottom: 30px;
  margin-right: 50px;
}

.survey.event-modal .eventModalContent img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  /* border-radius: 12px; */
  margin-bottom: 15px;
  margin-right: 20px;
  width: 100%;
  max-width: 400px;
  object-position: top;
  -o-object-position: top;
}

.popup-group {
  display: flex;
}

@media only screen and (max-width: 1199px){
  .popup-group {
    flex-direction: column;
  }
  .survey.event-modal p.event-title {
    font-size: 20px;
  }
}